What can I do to make a camera actor BP never possibly move left and only right?

Hey @usa423!

What I would do, On begin play get the position of the camera Y and set that as a variable like “Y Threshold.” Then when it moves, clamp it using a Clamp(Float) node with the minimum set to the “Y Threshold”, and after it moves set the current Y value of the camera as the new “Y Threshold”.

Hope that helps!

1 Like