|
|
@ -1021,7 +1021,7 @@ public class ParticleEmitter extends Geometry { |
|
|
|
Particle p = emitParticle(min, max); |
|
|
|
Particle p = emitParticle(min, max); |
|
|
|
if (p != null){ |
|
|
|
if (p != null){ |
|
|
|
p.life -= tpf; |
|
|
|
p.life -= tpf; |
|
|
|
if (lastPos != null) { |
|
|
|
if (lastPos != null && isInWorldSpace()) { |
|
|
|
p.position.interpolateLocal(lastPos, 1 - tpf / originalTpf); |
|
|
|
p.position.interpolateLocal(lastPos, 1 - tpf / originalTpf); |
|
|
|
} |
|
|
|
} |
|
|
|
if (p.life <= 0){ |
|
|
|
if (p.life <= 0){ |
|
|
|