From a93ca1e58f6527932e92c185221e9a247d47b386 Mon Sep 17 00:00:00 2001 From: -=yb4f310 Date: Sun, 12 Nov 2017 12:59:38 +0100 Subject: [PATCH] Update: Flame Particle Process - Forward and Reverse (dysneuk1ox.js) 58 bytes modified --- dysneuk1ox.js | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/dysneuk1ox.js b/dysneuk1ox.js index 24a3e17..bf11f6d 100644 --- a/dysneuk1ox.js +++ b/dysneuk1ox.js @@ -12,16 +12,13 @@ if (this.initialized) { if (this.forward) { texture.offset.x += 0.1; - if (texture.offset.x >= 1) { + if (texture.offset.x >= 0.9) { if (texture.offset.y >= 0.8) { texture.offset.x = 0.9; + texture.offset.y = 0.8; this.forward = false; } else { texture.offset.x = 0; - texture.offset.y = 0; - } - } else { - if (texture.offset.y < 0.8) { texture.offset.y += 0.2; } } @@ -29,19 +26,17 @@ if (this.forward) { if (!this.forward) { texture.offset.x -= 0.1; - if (texture.offset.x < 0) { - if (texture.offset.y < 0) { - texture.offset.x = 0; + if (texture.offset.x <= 0) { + texture.offset.x = 0; + if (texture.offset.y < 0.2) { + texture.offset.x = 0.1; + texture.offset.y = 0; this.forward = true; } else { texture.offset.x = 0.9; - texture.offset.y = 0.8; - } - } else { - if (texture.offset.y > 0) { texture.offset.y -= 0.2; } - } + } } texture.updateInstance();