From 9698d2da823518e060ada5e8ae4245cfb1f38b2f Mon Sep 17 00:00:00 2001 From: -=yb4f310 Date: Sun, 26 Nov 2017 21:17:32 +0100 Subject: [PATCH] Initial Commit: CC - Mouse Down (42igil3g39.js) --- 42igil3g39.js | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 42igil3g39.js diff --git a/42igil3g39.js b/42igil3g39.js new file mode 100644 index 0000000..6440feb --- /dev/null +++ b/42igil3g39.js @@ -0,0 +1,49 @@ +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; + + if (this.subscription) { + this.subscription.remove(); + this.subscription = null; + } + + this.subscription = GameLib.Event.Subscribe( + GameLib.Event.AUDIO_ENDED, + function(data) { + if (data.audio.name === 'Audio - Flamethrower') { + if (!data.audio.paused) { + GameLib.Event.Emit(GameLib.Event.MOUSE_UP); + } + } + }.bind(this) + ); + + 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' + } +); + +return null; +//@ sourceURL=mouseDown.js \ No newline at end of file