Particle system appears to be working

This commit is contained in:
Nathan Kunicki 2016-02-14 01:40:00 +00:00
parent aa281e57b4
commit 73a517edc8
2 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@ window.onload = function () {
} }
}; };
emitter.setParticleParent(mainScene); emitter.setParticleParent(mainScene);
emitter.emitting = true; emitter.emitting = true;

View File

@ -119,7 +119,7 @@ class KeyboardInput {
isPressed (keyCode) { isPressed (keyCode) {
return !!this._keyState[keyCode]; return !!this._keyState[keyCode];
} }