mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 18:47:35 +00:00
finished nc merge
This commit is contained in:
parent
f7ca9d2393
commit
cacd5d74c0
8 changed files with 13 additions and 12 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue