Unity Spawned Object不会向前旋转

时间:2019-03-15 13:13:35

标签: c# unity3d

在我的游戏中,我朝着看向的方向射击弹丸... 但是例如当我向右射击时,弹丸是笔直的,不要前进。这就是我用来让他们移动的方式:

load()

Projectile Shoot Forward Shooting Projectile but not forward

Dont rotate in the direction where i looked

1 个答案:

答案 0 :(得分:4)

好,在扔球之前,您需要像照相机一样调整它的方向:

package Runner;

import org.junit.runner.RunWith;

import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;

@RunWith(Cucumber.class)
@CucumberOptions(
        features="Feature",
        glue={"stepDefn"},
        plugin = { "pretty", "html:target/cucumber-reports"},
        tags="@CO_Login_Test_ClaimAssistant"  ,
        dryRun= true ,
        monochrome = true
        )public class TestRunner {}

如果对象沿Z轴,则该对象应起作用。否则,我们需要对其进行一些旋转。