코드
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class InspectorFieldTest : MonoBehaviour
{
[System.Serializable]
public class InspectorComponent
{
public Button createButton;
public Image backgroundImage;
}
public InspectorComponent inspectorComponent;
}
결과이미지
위 처럼 코드를 짰을 때, 관련있는 요소들끼리 묶어서 인스펙터에 보여줄 수 있도록 만들 수 있다.
'유니티에서 게임개발을 추구하면 안되는걸까 > 유니티 미세한 글' 카테고리의 다른 글
[유니티 미세 팁] 연산 순서 (1) | 2024.09.04 |
---|