Shiftキーを押すと発射物を発射する移動オブジェクトがあります
発射物を特定のポイント(0,0,10)に移動させたい
次のコードを試しましたが、機能しません
if (Input.GetKey("right shift")||Input.GetKey("left shift")) {
Rigidbody clone;
clone = Instantiate(projectile1, transform.position, transform.rotation) as Rigidbody;
clone.velocity=new Vector3(0,0,10);
誰かが助けることができますか?