move a gameobject unity code example
Example 1: 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);
Example 2: c# transform
using UnityEngine;public class Example : MonoBehaviour
{
void Start()
{
foreach (Transform child in transform)
{
child.position += Vector3.up * 10.0f;
}
}
}
Example 3: unity how to move an object
float x = 10f;
float y = 10f;
float z = 10f;
Vector3 position = new Vector3(x, y, z);
transform.position = position;
Example 4: how to move an object in unity using c#
public class NewBehaviourScript: MonoBehaviour { public float movementSpeed = 10; void Update(){ transform.Translate(Vector3.right * movementSpeed * Time.deltaTime); } }