Conveyor Belt
How do I code a conveyor belt that pushes my player in the desired direction I tried to code one by myself but the player wasn't moving even though other objects were I think its because of how I move my player Here is the player movement code: void Move() { float moveInput = Input.GetAxisRaw("Horizontal"); Vector2 playerVelocity = new …
