Issues with particle system after upgrade to 3.60

Hi,

Just upgraded to 3.60 and I have changed all method names regarding particles to the updated ones. Previously I was able to set min and max for a lot of stuff such as scale and the system would generate random scales between those values. After update this seems to be only working when I provide these values at creation of the system but not by using setParticleScale. I can see in the ops object that scaleX and scaleY gets start and end values 0 when using that method. Is this a bug or should I do something else to get this working? I seem to get the same issue with other parameters there as well.

Thanks in advance
/C

If you’ve already configured an emitter op with { min, max }, you can modify it:

// `start` is `min`, `end` is `max`
emitter.ops.scaleX.start = 1;
emitter.ops.scaleX.end = 2;

If you haven’t, then you have to reconfigure it:

emitter.ops.scaleX.loadConfig({ scaleX: { min: 1, max: 2 } });

Great samme! Thank you so much.

Br
C