반응형 MonoBehaviour1 [Unity] MonoBehaviour 유니티 엔진에서 GameObject를 생성하고 이 객체에 Script를 추가하면 다음과 같이 C# 클래스가 자동으로 생성된다. using System.Collections; using System.Collections.Generic; using UnityEngine; public class Script3 : MonoBehaviour { // Start is called before the first frame update void Start() { } // Update is called once per frame void Update() { } } 이 클래스는 MonoBehaviour를 상속 받았다. 본 객체 상에서 코딩을 하려면 MonoBehaviour에 대해서 잘 알고 있어야 하겠다. MonoBeha.. 2021. 1. 31. 이전 1 다음 반응형