Update: CC - Before Render - Moorcow (zo950m57cc.js) 12 bytes modified

beta.r3js.org
-=yb4f310 2017-11-26 23:44:11 +01:00
parent 219ee697ad
commit 31b3b78c72
1 changed files with 2 additions and 2 deletions

View File

@ -783,7 +783,7 @@
if (material.name.indexOf('Trees') === -1) {
mesh.burnLife -= 0.1 * data.delta;
mesh.burnLife -= data.delta;
if (mesh.burnLife < 0) {
mesh.burnLife = 0;
this.burn(mesh);
@ -796,7 +796,7 @@
);
if (mesh.burnLife <= 0) {
mesh.explodeLife -= 0.1 * data.delta;
mesh.explodeLife -= data.delta;
if (mesh.explodeLife < 0) {
mesh.explodeLife = 0;
}