Answers for "move object with script unity"

C#
4

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
Posted by: Guest on December-19-2019
1

unity move object from another script

// Moving a list of objects down on key press
public GameObject[] deck;
public float movementSpeed = 30;

void Update()
    {
        if (Input.GetKey(KeyCode.E))
        {
            foreach (var obj in deck) 
            {
                obj.transform.Translate(Vector3.down * movementSpeed * Time.deltaTime);
            }
        }
    }
Posted by: Guest on June-12-2021

Code answers related to "move object with script unity"

C# Answers by Framework

Browse Popular Code Answers by Language