Menu added

This commit is contained in:
2022-03-09 13:25:15 +01:00
parent b71548ca8f
commit 8d072ee69c
70 changed files with 4219 additions and 1214 deletions

View File

@@ -62,7 +62,7 @@ public class TankMovement : MonoBehaviour
//forward and backwards movement
movement = transform.forward * m_MovementInputValue * m_Speed * Time.deltaTime;
//m_Rigidbody.MovePosition(m_Rigidbody.position + movement);
controller.Move(movement.normalized);
controller.Move(movement);
}
private void Turn() {