how to move an object in unity using c# code example
Example 1: hot to move pobject unity
using UnityEngine;
using System.Collections;
public class ExampleClass : MonoBehaviour
{
void Update()
{
transform.Translate(Vector3.forward * Time.deltaTime);
transform.Translate(Vector3.up * Time.deltaTime, Space.World);
}
}
Example 2: how to move an object in unity using c#
using UnityEngine; using System.Collections; public class NewBehaviourScript: MonoBehaviour { void Start (){ Transform.Position.X = 2; Debug.Log("Test"); } }
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); } }