Odin Inspector 系列教程 --- Toggle Left Attribute

Toggle Left Attribute特性:用于在一个bool成员变量的label之前绘制一个toggle

Odin Inspector 系列教程 --- Toggle Left Attribute_第1张图片
using Sirenix.OdinInspector;
using UnityEngine;

public class ToggleLeftAttributeExample : MonoBehaviour
{
    [ToggleLeft]
    public bool LeftToggled;

    public bool normalBool;
}

更多教程内容详见:革命性Unity 编辑器扩展工具 --- Odin Inspector 系列教程

你可能感兴趣的:(Odin Inspector 系列教程 --- Toggle Left Attribute)