From b488ba00d8bd145aaf2c0310ac2cd46eb4c3dafa Mon Sep 17 00:00:00 2001 From: -=yb4f310 Date: Sun, 12 Nov 2017 12:20:10 +0100 Subject: [PATCH] Update: Flame Particle Process (dysneuk1ox.js) 70 bytes modified --- dysneuk1ox.js | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/dysneuk1ox.js b/dysneuk1ox.js index 42b4097..24a3e17 100644 --- a/dysneuk1ox.js +++ b/dysneuk1ox.js @@ -12,8 +12,8 @@ if (this.initialized) { if (this.forward) { texture.offset.x += 0.1; - if (texture.offset.x === 1) { - if (texture.offset.y === 0.8) { + if (texture.offset.x >= 1) { + if (texture.offset.y >= 0.8) { texture.offset.x = 0.9; this.forward = false; } else { @@ -21,7 +21,9 @@ if (this.forward) { texture.offset.y = 0; } } else { - texture.offset.y += 0.2; + if (texture.offset.y < 0.8) { + texture.offset.y += 0.2; + } } } @@ -36,7 +38,9 @@ if (!this.forward) { texture.offset.y = 0.8; } } else { - texture.offset.y -= 0.2; + if (texture.offset.y > 0) { + texture.offset.y -= 0.2; + } } }