14 lines
556 B
C#
14 lines
556 B
C#
#if UNITY_EDITOR
|
|
namespace UguiToolkit.Editor
|
|
{
|
|
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.txcombo.c1.ugui-toolkit/.tools/result_rot_scale/main.exe";
|
|
|
|
}
|
|
}
|
|
#endif |