function to move an object in unity code example

Example 1: 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 2: unity how to move an object

float x = 10f; //the x value for the object's position
float y = 10f; //the y value for the object's position
float z = 10f; //the z value for the object's position
Vector3 position = new Vector3(x, y, z); // this will create a vector with the values of the x, y, and z values
transform.position = position; //this change the object that this script is attached to position to the position vector that was created

Example 3: 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);       } }