2024-10-23 17:30:59 +00:00
|
|
|
|
#if UNITY_EDITOR
|
|
|
|
|
namespace UguiToolkit.Editor
|
2024-10-08 15:19:05 +00:00
|
|
|
|
{
|
|
|
|
|
public class EditorConst
|
|
|
|
|
{
|
|
|
|
|
public const string WorkspaceDirPath = "Assets/Editor/UguiToolkit";
|
|
|
|
|
public const string SettingFilePath = WorkspaceDirPath + "/setting.asset";
|
|
|
|
|
public const string CacheFilePath = WorkspaceDirPath + "/cache.asset";
|
|
|
|
|
public const string RotScaleInfoFilePath = "Temp/result_rot_scale.json";
|
|
|
|
|
public const string RotScaleInfoToolFilePath = "Packages/com.soviby.unity.ui.ugui-toolkit/.tools/result_rot_scale/main.exe";
|
|
|
|
|
|
|
|
|
|
}
|
2024-10-23 17:30:59 +00:00
|
|
|
|
}
|
|
|
|
|
#endif
|