So I have this particle moving around using bouncing ball movement. It's set to speed of 1 and deceleration of 0. When I start the frame this works great. It slowly moves in a random direction forever.
If I try to change the deceleration and speed with an event being triggered, then this also works. The particle speeds up and then decelerates to a stop.
The issue is that when I try to then set the speed back to 1 and deceleration to 0, the particle starts moving again but then it decelerates and stops? It doesn't appear that I can touch the deceleration value and then set it back to 0 or something. Not sure why it's behaving like this.
I would think that setting the speed back to 1 and deceleration back to 0 would mean it would move at the speed of 1 forever. But instead it moves for a short distance and then stops permanently.