You are trying to create a MonoBehaviour using the 'new' keyword. This is not allowed. MonoBehaviours can only be added using AddComponent(). Alternatively, your script can inherit from ScriptableObject or no base class at all
해당이슈는 MonoBehaviour를 상속받는 클래스를 new 키워드로 생성할 경우에 발생하는 Warning 이다.
반응형
해결방법은 다음과 같다.
1. MonoBehaviour를 제거하는 방법 (구조의 변경)
2. new 키워드가 아닌 AddComponent를 통해서 생성하는 방법
★☆☆☆☆
반응형
'개발 > Unity' 카테고리의 다른 글
문제해결)Unity)패키지 매니저에서 찾지 못하는 경우(Search not found in Packagemanager) (0) | 2022.09.13 |
---|---|
Unity) Insepctor Enum 이름 변경 (1) | 2022.09.07 |
Unity)문제해결)ArgumentException: You can only call GUI functions from inside OnGUI. (0) | 2022.09.01 |
Unity) Network Connection Check(인터넷 연결 확인 / Wi-fi 연결 ) (0) | 2022.08.31 |
Unity) SerializeField / SerializeReference (0) | 2022.08.30 |
댓글