Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

how to make an object move in unity

Vector3 input = new Vector3 (Input.GetAxis("Horizontal"), 0 , Input.GetAxis("Vertical");
Vector3 dir = input.normalized;
Vecotr3 vel = dir * speed * Time.deltaTime;

transform.Translate(vel);
 
PREVIOUS NEXT
Tagged: #object #move #unity
ADD COMMENT
Topic
Name
8+4 =