v0.6.1a: fixed permanent flares not appearing

This commit is contained in:
Evan Debenham 2017-08-16 20:20:09 -04:00
parent 8fe57dfdf8
commit 2f062aeb9c

View File

@ -119,7 +119,7 @@ public class Flare extends Visual {
visual.parent.addToBack( this );
lifespan = this.duration = duration;
scale.set( 0 );
if (lifespan > 0) scale.set( 0 );
return this;
}
@ -129,7 +129,7 @@ public class Flare extends Visual {
parent.add( this );
lifespan = this.duration = duration;
scale.set( 0 );
if (lifespan > 0) scale.set( 0 );
return this;
}