본문 바로가기

유니티/오류

Unity(유니티)_'ScreenCapture' is missing the class attribute 'ExtensionOfNativeClass'! OR GameObject (named 'Test') references runtime script in scene file. Fixing!

경고 중의 내용 : 

'ScreenCapture' is missing the class attribute 'ExtensionOfNativeClass'! 

OR 

GameObject (named 'Test') references runtime script in scene file. Fixing!

 

이것저것 테스트를 진행 중 기존에 있던 'Test' 오브젝트의 ' Test '스크립트를 MonoBehaviour 가 아닌 것으로 변경했더니 생긴 오류이다.

 

수정 전

public class Test  : MonoBehaviour

 

수정 후

class ScreenCapture

 

이렇게 변경하니 생긴 오류... 

내가 왜 그랬을까... ㅠㅠ

 

해결 방법 :

1. 'Test' 오브젝트의 'Test'스크립트를 제거!

2.  class ScreenCapture의 스크립트를 오브젝트에 넣기는 행동을 하지 않기!

 

이러면 해결된다. 

내가 정신이 희미해진것을까...