2022. 11. 11. 16:18ㆍPublic/Unity
https://icechou.tistory.com/327
유니티 커스텀에디터 사용하기(인스펙터 컴포넌트 수정)
우선 아래와같은 Enemy라는 스크립트가 있다고 한다면 아래처럼 인스펙터에서 보일것이다.1234567891011121314public class Enemy : MonoBehaviour { public MonsterType monsterType; public int hp; public float damage; public string
icechou.tistory.com
https://kupaprogramming.tistory.com/30
(유니티3D)커스텀 에디터(인스펙터 창 변경)
글 작성에 앞서 저도 다른 분들의 글을 참고하며 배웠습니다 그렇기에 코드에 그 분들의 흔적이 다소 남아있으며 이 글로는 부족하다면 추가로 보는 것도 좋을 것 같습니다.https://486boy.blogspot.kr/
kupaprogramming.tistory.com
스크립트 뜨도록 표시
https://answers.unity.com/questions/550829/how-to-add-a-script-field-in-custom-inspector.html
How to add a "Script" field in custom inspector? - Unity Answers
answers.unity.com
https://answers.unity.com/questions/1223009/how-to-show-the-standard-script-line-with-a-custom.html
'Public > Unity' 카테고리의 다른 글
[MyUtil] LayOutHelper(오브젝트 정리) (0) | 2023.06.10 |
---|---|
모든 노드 정리 (0) | 2023.04.06 |
Unity 프로파일러 - 프로파일러 창을 사용하여 성능 문제 진단 (1) | 2022.08.29 |
Unity 프로파일러 - The Profiler Window (0) | 2022.08.26 |
최적화 - 메쉬(Mesh) (0) | 2022.08.24 |