본문 바로가기
개발/Unity

Unity) Insepctor Enum 이름 변경

by 테샤르 2022. 9. 7.

Insepctor Enum 이름 변경

 

Inspector에서 Enum을 좀더 직관적인 이름으로 변경할수있는 Attribute이다.

종종 사용하면 좋을것 같다.

 

반응형

간단하게 enum에 [InsepctorName]이라는 Attribute를 추가하면 된다.

using UnityEngine;

public enum ModelImporterIndexFormat
{
    Auto = 0,
    [InspectorName("16 bits")]
    UInt16 = 1,
    [InspectorName("32 bits")]
    UInt32 = 2,
}

Unity InsepctorName : [링크]

 

Unity - Scripting API: InspectorNameAttribute

Success! Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable. Close

docs.unity3d.com

 

★☆☆☆☆

 

반응형

댓글