커스텀 에디터

2022. 11. 11. 16:18Public/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