前提・実現したいこと
Unityでゲーム作成の学習をしているのですが、
テキストの変化を反映するため、コードを作成したのですが
Hierarchyにあるテキストに引っ付けようとしたら
エラーになってしまいます。
自身でエラーについて調べてみたのですが、
修正してもエラーになってしまいます。
どなたかご教授いただけないでしょうか。
ファイル名:HPText
発生している問題・エラーメッセージ
Can't add script Can't add script component 'HPText' because the script class cannot be found. Make sure that there are no compile errors and that the file name and class name match.
該当のソースコード
C#
1using System.Collections; 2using System.Collections.Generic; 3using UnityEngine; 4using UnityEngine.UI; 5 6public class HPText: MonoBehaviour 7{ 8 // Start is called before the first frame update 9 void Start() 10 { 11 Text HPText - GetComponet<Text>(); 12 HPText.Text = "30" 13 HPText.color = new color(255f/255f,0f/255f,0f/255f,255f/255f) 14 15 } 16 17 // Update is called once per frame 18 void Update() 19 { 20 21 } 22} 23
試したこと
クラス名の変更。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/24 08:44
2020/07/24 08:47