Untiy3D的游戏物体的实例和刚体的使用

一,如下代码,

            GameObject b = GameObject.Instantiate(bullet, transform.position, transform.rotation) as GameObject;
            Rigidbody rgd = b.GetComponent<Rigidbody>();
            rgd.velocity = transform.forward * speed;

二,由于GameObject.Instantiate返回的类型是object所以我们需要as GameObject强转类型,我们定义一个刚体对象,并给刚体一个朝前面的速度

 

posted @ 2018-04-17 23:24  叶丶梓轩  阅读(406)  评论(0编辑  收藏  举报