unityでゲームを作成中にエラーが起きましたが、修正方法がわかりません。
発生している問題・エラーメッセージ
Assets\GameDirector.cs(12,14): error CS1061: 'GameDirector' does not contain a definition for 'hpGause' and no accessible extension method 'hpGause' accepting a first argument of type 'GameDirector' could be found (are you missing a using directive or an assembly reference?)
該当のソースコード
1 using System.Collections; 2 using System.Collections.Generic; 3 using UnityEngine; 4 using UnityEngine.UI; //UIを使うので忘れず追加 5 6 public class GameDirector : MonoBehaviour 7 { 8 GameObject hpGauge; 9 10 void Start() 11 { 12 this.hpGause = GameObject.Find("hpGauge"); 13 } 14 15 public void DecreaseHp() 16 { 17 this.hpGauge.GetComponent<Image>().fillAmount -= 0.1f; 18 } 19 20 }
回答1件
あなたの回答
tips
プレビュー