前提・実現したいこと
ボタンを押すとプレイヤーからオブジェクトが生成されるシステムを作っています。
該当のソースコードだと生成される位置が少しずれてしまいます。
void Start()
{
transform.position = new Vector3(-3, 0, 0);
}
のコードを加えてみましたが、プレイヤーが−3、0、0の位置に移動してしまいました。
インスタンス化させたオブジェクトはどうすれば少しずらして生成させられるでしょうか。
該当のソースコード
using System.Collections; using System.Collections.Generic; using UnityEngine; public class ShurikenShot : MonoBehaviour { public GameObject newPrefab; public string pushKey = "c"; // Update is called once per frame void Update() { if (Input.GetKeyDown(pushKey)) { GameObject newGameObject = Instantiate(newPrefab,transform.position, Quaternion.identity); } } }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。