Game Development/Unity
-
[Error] unity The same field name is serialized multiple times in the class or its parent classGame Development/Unity 2019. 3. 23. 13:06
[Error] unity The same field name is serialized multiple times in the class or its parent class Resolution 상속 관계에서 중첩된 이름의 변수가 선언되었을 경우 나오는 에러이다. 상속받은 클래스에서 중첩된 이름을 사용하는 것을 없애면 된다.
-
[Editor] 2D array, 2차 행렬을 inspector에서 보기 + 빌드 문제Game Development/Unity 2019. 2. 13. 16:41
Unity Editor에서는 public으로 선언한 변수에 대해서 inspector에서 값을 변경할 수 있게 해준다. 이러한 사유로 SciptableObject를 상속받는 데이터를 만들어서 사용하려고 한다. 그러나 1D array까지 지원해주지만, 기본적으로 2D array에 대해서는 지원해주지 않는다. 이에 관해 Custom inspector를 만들어 해결할 수 있다. (Warning) I didn't test those things. i just type this for remember what i did. (주의) 아래의 내용들을 테스트 안해봤다. 기억하려고 적어놓은 거. 크게 Editor를 상속받는 방법과 PropertyDrawer를 사용하는 방법이 있는 것 같다. (결과를 먼저 알고 싶다면, 내..