구조체는 선언할 때 Serializable을 선언해야 인스펙터에 노출됨.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | using System; [Serializable] public struct CardSt { public int num; public string name; public ActiveType ActiveType; public CardType CardType; public string explain; public Sprite sprite; public CardSt(int _num, string _name, ActiveType _ActiveType, CardType _CardType, string _explain, Sprite _sprite) { num = _num; name = _name; ActiveType = _ActiveType; CardType = _CardType; explain = _explain; sprite = _sprite; } } | cs |
'🌍 Unity > 유니티 프로그래밍' 카테고리의 다른 글
유니티 구글 스프레드 시트 연동 (0) | 2018.12.13 |
---|---|
유니티 Unity ABC 파일 alembic 파일 넣기 (0) | 2018.11.13 |
유니티 실시간으로 퀄리티 세팅 바꾸기 ( Unity Quality setting in runtime ) (0) | 2018.06.19 |
Touch Ray로 3d오브젝트 선택하기 (0) | 2018.06.11 |
텍스트 타이핑 효과 (0) | 2018.06.08 |