I am trying to create a Mario style game where the game only scrolls right and the player can not return left.
I thought about just disabling the left control in the key is pressed but It didn’t quite do the job.
Yes, you can do this.
The simplest way is probably to create a variable like “MinCamera.X” and set it to Camera.X() every frame. Then update your camera movement event to move with limits using MinCamera.X, or check to see if Camera.X() is less than MinCamera.X and if so set the Camera X position to be MinCamera.X