0312 编辑器窗口模式 部分设备显示问题,文字和底图同色无法查看
| | |
| | | static void Init() |
| | | { |
| | | exportType = 0; |
| | | window = GetWindow(typeof(ExportPrefabsIMG), true, "导出界面图片,运行时导出会更准确") as ExportPrefabsIMG; |
| | | window = GetWindow(typeof(ExportPrefabsIMG), false, "导出界面图片,运行时导出会更准确") as ExportPrefabsIMG; |
| | | window.position = new Rect(UnityEngine.Screen.width / 2, UnityEngine.Screen.height / 2, 300, 700); |
| | | window.Show(); |
| | | }
|
| | |
| | | static void Init()
|
| | | {
|
| | | configOutPutPath = UnityEngine.Application.dataPath + "/StreamingAssets/Config";
|
| | | window = GetWindow(typeof(TableTool), true, "策划导表工具") as TableTool;
|
| | | window = GetWindow(typeof(TableTool), false, "策划导表工具") as TableTool;
|
| | | window.position = new Rect(UnityEngine.Screen.width / 2, UnityEngine.Screen.height / 2, 300, 700);
|
| | | window.Show();
|
| | | //PathCache();
|