mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 10:37:34 +00:00
better feedback on killing. fixes #109
This commit is contained in:
parent
81f5990e0c
commit
5007ab5b02
8 changed files with 95 additions and 22 deletions
|
|
@ -10,10 +10,11 @@ define([
|
|||
"Game/Client/View/Pixi/Layers/Ghost",
|
||||
"Game/Client/View/Pixi/Layers/Swiper",
|
||||
"Game/Client/PointerLockManager",
|
||||
"Game/Client/View/Pixi/Layers/Debug"
|
||||
"Game/Client/View/Pixi/Layers/Debug",
|
||||
"Game/Client/View/Pixi/Layers/Messages"
|
||||
],
|
||||
|
||||
function (Parent, DomController, PIXI, Settings, Nc, Exception, GameStats, LayerManager, Ghost, Swiper, PointerLockManager, Debug) {
|
||||
function (Parent, DomController, PIXI, Settings, Nc, Exception, GameStats, LayerManager, Ghost, Swiper, PointerLockManager, Debug, Messages) {
|
||||
|
||||
"use strict";
|
||||
|
||||
|
|
@ -87,6 +88,9 @@ function (Parent, DomController, PIXI, Settings, Nc, Exception, GameStats, Layer
|
|||
this.debugLayer = Debug;
|
||||
this.layerManager.insert(this.debugLayer, false);
|
||||
|
||||
this.messagesLayer = new Messages();
|
||||
this.layerManager.insert(this.messagesLayer, false);
|
||||
|
||||
this.render();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue