2024-10-23 17:30:59 +00:00
|
|
|
|
#if UNITY_EDITOR
|
|
|
|
|
using Sirenix.OdinInspector;
|
2024-10-08 15:19:05 +00:00
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
namespace UguiToolkit.Editor
|
|
|
|
|
{
|
|
|
|
|
public class SettingScriptObject : ScriptableObject
|
|
|
|
|
{
|
|
|
|
|
[LabelText("ui预制体存放的路径"), FolderPath]
|
|
|
|
|
public string prefabForUIDirPath;
|
|
|
|
|
}
|
2024-10-23 17:30:59 +00:00
|
|
|
|
}
|
|
|
|
|
#endif
|