17 lines
346 B
C#
17 lines
346 B
C#
|
|
using UnityEngine;
|
|||
|
|
using UnityEditor;
|
|||
|
|
namespace FSM
|
|||
|
|
{
|
|||
|
|
#if UNITY_EDITOR
|
|||
|
|
// <20>Զ<EFBFBD><D4B6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>࣬<EFBFBD><E0A3AC><EFBFBD>ڱ<EFBFBD><DAB1><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD><D2AA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֶ<EFBFBD>
|
|||
|
|
public class DropdownStringAttribute : PropertyAttribute
|
|||
|
|
{
|
|||
|
|
public string filePath;
|
|||
|
|
|
|||
|
|
public DropdownStringAttribute(string filePath)
|
|||
|
|
{
|
|||
|
|
this.filePath = filePath;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
#endif
|
|||
|
|
}
|