Initial Commit: CC - Mouse Down (xthva3e5s8.js)

beta.r3js.org
-=yb4f310 2017-11-16 21:17:03 +01:00
parent 59567af85c
commit 1da8dc6b88
1 changed files with 45 additions and 0 deletions

45
xthva3e5s8.js Normal file
View File

@ -0,0 +1,45 @@
if (!this.entityLoaded) {
return;
}
if (!this.initialized) {
/**
* Link some objects for MouseDown component
*/
this.throwerParticleEngine = this.entityLoaded.throwerParticleEngine;
this.beforeRender = this.entityLoaded.beforeRender;
this.mouseMove = this.entityLoaded.mouseMove;
this.initialized = true;
}
this.beforeRender.mouseIsDown = true;
this.mouseMove.mouseIsDown = true;
this.throwerParticleEngine.enabled = true;
this.throwerParticleEngine.particlesPerSecond = 50;
this.throwerParticleEngine.updateInstance('particlesPerSecond');
this.throwerParticleEngine.templateParticle.speed = 300;
this.throwerParticleEngine.templateParticle.scale.x = 15;
GameLib.Event.Emit(
GameLib.Event.PLAY_AUDIO,
{
name : 'Audio - Flamethrower'
}
);
this.subscription = GameLib.Event.Subscribe(
GameLib.Event.AUDIO_ENDED,
function(data) {
if (data.audio.name === 'Audio - Flamethrower') {
GameLib.Event.Emit(GameLib.Event.MOUSE_UP);
if (this.subscription) {
this.subscription.remove();
this.subscription = null;
}
}
}.bind(this)
);
return null;
//@ sourceURL=mouseDown.js