Chop math add on to previous result (Chop +=)

Hello! I have a position value and a velocity value. I want to make it so that the position will be stored and constantly have the velocity added to it. A code equivalent would be

// in frame loop
position += velocity

An example is if on frame 1 position = 0 and velocity = 1 then on frame 2 position = 1. If on frame 2 velocity changed to 0.5 then on frame 3 position should be 1.5.

Thank you!

You are looking for a speedCHOP!

1 Like

Yes thank you! This is what I was looking for.