Advertisement
AJPlayz7

Untitled

Dec 1st, 2021
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. void Update()
  2. {
  3. transform.Translate(speed * Input.GetAxis("Horizontal") * Time.deltaTime, 0f, speed *
  4. Input.GetAxis("Vertical") * Time.deltaTime);
  5.  
  6. transform.position = new Vector3
  7. (
  8. Mathf.Clamp(transform.position.x, bounds.xMin, bounds.xMax),
  9. 0.5f,
  10. Mathf.Clamp(transform.position.z, bounds.zMin, bounds.zMax)
  11. );
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement