Files
tianrunCRM/Assets/CoolapeFrame/Editor/Inspectors/CLUIJumpLabelInspector.cs
2020-07-04 14:41:25 +08:00

17 lines
451 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEditor;
using Coolape;
[CanEditMultipleObjects]
[CustomEditor(typeof(CLUIJumpLabel), true)]
public class CLUIJumpLabelInspector : UILabelInspector
{
protected override bool ShouldDrawProperties()
{
NGUIEditorTools.DrawProperty("speed", serializedObject, "speed", GUILayout.MinWidth(40f));
return base.ShouldDrawProperties();
}
}