【热更工具】文件大小保留两位xiaoshu

dev_chengFeng
gaoxin 2021-08-02 10:11:14 +08:00
parent e3730ac549
commit 09ab5dea99
1 changed files with 1 additions and 1 deletions

View File

@ -761,7 +761,7 @@ namespace GameEditor.FrameTool
_scp = EditorGUILayout.BeginScrollView(_scp);
foreach(ResourceFile rf in diffList)
{
EditorGUILayout.LabelField(rf.fileName+"|"+(rf.size / 1048576)+"M");
EditorGUILayout.LabelField(rf.fileName+"|"+(rf.size / 1048576).ToString("0.00") + "M");
}
EditorGUILayout.LabelField("files.unity3d");
EditorGUILayout.LabelField(AppConst.GameConfigFile);