Files
aibis-dream/Assets/Editor/Script/TalkSceneSoDrawer.cs
T
2025-01-08 11:41:20 +08:00

20 lines
469 B
C#

using UnityEditor;
using UnityEngine;
namespace AibisDream.SystemEditor
{
[CustomPropertyDrawer(typeof(TalkSceneSoAttribute))]
public class TalkSceneSoDrawer : PropertyDrawer
{
public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
{
}
public override float GetPropertyHeight(SerializedProperty property, GUIContent label)
{
return 0;
}
}
}