您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
24 行
586 B
24 行
586 B
using UnityEditor;
|
|
using UnityEngine;
|
|
|
|
namespace NaughtyAttributes.Editor
|
|
{
|
|
[PropertyGrouper(typeof(BoxGroupAttribute))]
|
|
public class BoxGroupPropertyGrouper : PropertyGrouper
|
|
{
|
|
public override void BeginGroup(string label)
|
|
{
|
|
EditorGUILayout.BeginVertical(GUI.skin.box);
|
|
|
|
if (!string.IsNullOrEmpty(label))
|
|
{
|
|
EditorGUILayout.LabelField(label, EditorStyles.boldLabel);
|
|
}
|
|
}
|
|
|
|
public override void EndGroup()
|
|
{
|
|
EditorGUILayout.EndVertical();
|
|
}
|
|
}
|
|
}
|