Questions
Undergraduate
visual studioを用いてunityでのプログラミングをしています。
スタートメソッドとアップデートメソッドの色がキーワードとして認識されてしまい、青色になってしまいます。
メソッドと認識し、黄色く表示させるためにはどうしたらいいでしょうか。
教えていただけると幸いです。
Lusing UnityEngine;
public class NewBehaviour Script : MonoBehaviour
// Start is called before the first frame update
void Start()
{
Test();
}
// Update is called once per frame
void Update ()
}
void Test ()
Debug.Log ("Test");
Answers
No answer yet
Were you able to resolve your confusion?
Users viewing this question
are also looking at these questions 😉