instantiate an object at a certain position unity
Instatiate(prefab, new Vector3(posX, posY, posZ), Quaternion.identity);
instantiate an object at a certain position unity
Instatiate(prefab, new Vector3(posX, posY, posZ), Quaternion.identity);
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);
}
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us