我如何设置子弹朝向敌人的方向?

时间:2017-10-07 15:07:04

标签: c# unity3d

我想向敌人开枪 但我无法正确设置子弹的方向 我怎么设置呢?     这是我的代码。

    GameObject gm = (GameObject)Instantiate(BulletPrefab, BulletPoint.position, BulletPoint.rotation);

ScreenShot

2 个答案:

答案 0 :(得分:0)

.dataTables_paginate .disabled {
   display:none;
}   
dataTables_paginate .disabled + span {
   display:none;
}   

ScreenShot

答案 1 :(得分:0)

伙计们,伙计们。问题解决了 我只是创建一个空的游戏对象并通过调整空的游戏对象来修复枢轴。

        GameObject monster = (GameObject)Instantiate(Resources.Load("Bullet"));
    monster.transform.position = BulletPoint.transform.position;
    monster.transform.rotation = BulletPoint.transform.rotation;