###エラー
The type or namespace name'Imove' could not be found
###やっていること
一定時間経過で敵がtargetがいる方向に弾を打つというスクリプトを書きました。しかし、エラーの原因になっている<Imove>というコンポーネントが探しても見つからず、どうすればいいか分かりません。教えてください。
あと、targetが敵のinspecter欄に表示されないので表示されるようにしたいのですがどうすればよいですか。これも合わせて教えて欲しいです。
リンクは参考にしたサイトです。
c#
1public class bluefairy1 : MonoBehaviour 2{ 3 private float time = 0f; 4 public Transform firePoint; 5 [SerializeField] GameObject redsmallshotPrefab; 6 [SerializeField] Transform target; 7 bool isCalled = false; 8 // Start is called before the first frame update 9 void Start() 10 { 11 12 13 } 14 15 // Update is called once per frame 16 void Update() 17 { 18 time += Time.deltaTime; 19 if (time <= 0.9f) 20 { 21 transform.position += new Vector3(0, -6, 0) * Time.deltaTime * 3f; 22 } 23 24 25 26 27 if (time >= 5.5f) 28 { 29 transform.position += new Vector3(0, 6, 0) * Time.deltaTime * 3f; 30 } 31 if (time > 3.0f) 32 { 33 if (isCalled == false) 34 { 35 isCalled = true; 36 var obj = GetComponent<IMove>().SetTarget(target); 37 Instantiate(redsmallshotPrefab, firePoint.position, transform.rotation); 38 } 39 } 40 41 } 42} 43
回答1件
あなたの回答
tips
プレビュー