finished nc merge

This commit is contained in:
logsol 2014-03-17 22:07:57 +01:00
parent f7ca9d2393
commit cacd5d74c0
8 changed files with 13 additions and 12 deletions

View file

@ -12,8 +12,8 @@ function (DomController, Settings, Exception, Nc) {
this.canvas = null;
this.debugMode = false;
Nc.on("view/createMesh", this.createMesh, this);
Nc.on("view/createAnimatedMesh", this.createAnimatedMesh, this);
Nc.on(Nc.ns.client.view.mesh.create, this.createMesh, this);
Nc.on(Nc.ns.client.view.animatedMesh.create, this.createAnimatedMesh, this);
Nc.on(Nc.ns.client.view.mesh.add, this.addMesh, this);
Nc.on(Nc.ns.client.view.mesh.remove, this.removeMesh, this);
Nc.on(Nc.ns.client.view.mesh.update, this.updateMesh, this);
@ -21,8 +21,6 @@ function (DomController, Settings, Exception, Nc) {
Nc.on(Nc.ns.client.view.fullscreen.change, this.onFullscreenChange, this);
Nc.on(Nc.ns.client.view.debugMode.toggle, this.onToggleDebugMode, this);
Nc.on("view/toggleInfo", this.onToggleInfo, this);
Nc.on(Nc.ns.client.view.playerInfo.createAndAdd, this.onCreateAndAddPlayerInfo, this);
Nc.on(Nc.ns.client.view.playerInfo.update, this.onUpdatePlayerInfo, this);
Nc.on(Nc.ns.client.view.playerInfo.remove, this.onRemovePlayerInfo, this);