我是统一的初学者。我想在脚本中实例化游戏对象,而无需通过编辑器克隆已经存在的游戏对象。当我在 unity3d.com 中看到下面代码的教程时,我很好奇为什么要实例化刚体。
据我所知,刚体在概念上是 GameObject 的一个组件和 GameObject 的子组件。尽管刚体只是实例化,但游戏对象的实例在播放过程中会显示在场景中。
提前致谢。
using UnityEngine;
using System.Collections;
public class UsingInstantiate : MonoBehaviour
{
public Rigidbody rocketPrefab;
public Transform barrelEnd;
void Update ()
{
if(Input.GetButtonDown("Fire1"))
{
Rigidbody rocketInstance;
rocketInstance = Instantiate(rocketPrefab, barrelEnd.position, barrelEnd.rotation) as Rigidbody;
rocketInstance.AddForce(barrelEnd.forward * 5000);
}
}
}