We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5459878 commit a42a7abCopy full SHA for a42a7ab
1 file changed
Editor/UGUICodeGenerator.cs
@@ -1,7 +1,6 @@
1
using System.Collections.Generic;
2
using System.IO;
3
using System.Text;
4
-using GameFrameX.Runtime;
5
using GameFrameX.UI.UGUI.Runtime;
6
using UnityEditor;
7
using UnityEngine;
@@ -55,7 +54,7 @@ internal static void Generate(GameObject selectedObject)
55
54
File.WriteAllText(filePath, codeString, Encoding.UTF8);
56
AssetDatabase.Refresh();
57
58
- Debug.Log("生成UI代码完成");
+ Debug.Log("生成UI代码完成 文件路径:" + filePath);
59
Debug.Log("现在请将生成的代码挂载到当前的UGUI预制体上,然后点击重新绑定列表");
60
return;
61
}
0 commit comments