-
Give Layer Buoyancy
Hi there so I have a project where I want some spears to be floating as if in space or bouncing in water like a buoy. I’ve gotten a bit close to this by adding a wiggle expression to the y axis:
x = transform.position[0];
y = transform.position[1];
w = wiggle(2, 150);
[x,w[1]];But it comes out rough and jagged. I want the movement to be fluid. So is there something I can do or add to the expression to make the movements more fluid. Possibly easing the wiggle or it having velocity.