Answers for "unity instantiate vector3"

C#
29

unity instantiate

// You can use the 'Instantiate()' function to clone a GameObject
clone = Instantiate(original);

// You can also set the position, rotation and parent
clone = Instantiate(original, new Vector3(0, 0, 0), Quaternion.identity, cloneParent.transform);
Posted by: Guest on February-19-2020
0

unity instantiate vector3

using UnityEngine;// Instantiate a rigidbody then set the velocitypublic class Example : MonoBehaviour
{
    // Assign a Rigidbody component in the inspector to instantiate    public Rigidbody projectile;    void Update()
    {
        // Ctrl was pressed, launch a projectile
        if (Input.GetButtonDown("Fire1"))
        {
            // Instantiate the projectile at the position and rotation of this transform
            Rigidbody clone;
            clone = Instantiate(projectile, transform.position, transform.rotation);            // Give the cloned object an initial velocity along the current
            // object's Z axis
            clone.velocity = transform.TransformDirection(Vector3.forward * 10);
        }
    }
}
Posted by: Guest on March-27-2020

C# Answers by Framework

Browse Popular Code Answers by Language