diff --git a/Assets/YooAsset/Editor/AssetBundleDebugger/VisualViewers/DebuggerAssetListViewer.cs b/Assets/YooAsset/Editor/AssetBundleDebugger/VisualViewers/DebuggerAssetListViewer.cs index 3339ccff..30e4b8f9 100644 --- a/Assets/YooAsset/Editor/AssetBundleDebugger/VisualViewers/DebuggerAssetListViewer.cs +++ b/Assets/YooAsset/Editor/AssetBundleDebugger/VisualViewers/DebuggerAssetListViewer.cs @@ -125,13 +125,13 @@ namespace YooAsset.Editor _providerTableView.AddColumn(column); } - // BeginTime + // StartTime { var columnStyle = new ColumnStyle(100); columnStyle.Stretchable = false; columnStyle.Searchable = false; columnStyle.Sortable = true; - var column = new TableColumn("BeginTime", "Begin Time", columnStyle); + var column = new TableColumn("StartTime", "Start Time", columnStyle); column.MakeCell = () => { var label = new Label(); @@ -314,7 +314,7 @@ namespace YooAsset.Editor rowData.AddAssetPathCell("PackageName", packageData.PackageName); rowData.AddStringValueCell("AssetPath", providerInfo.AssetPath); rowData.AddStringValueCell("SpawnScene", providerInfo.OriginScene); - rowData.AddStringValueCell("BeginTime", providerInfo.StartTime); + rowData.AddStringValueCell("StartTime", providerInfo.StartTime); rowData.AddLongValueCell("LoadingTime", providerInfo.ElapsedMS); rowData.AddLongValueCell("RefCount", providerInfo.ReferenceCount); rowData.AddStringValueCell("Status", providerInfo.Status.ToString()); diff --git a/Assets/YooAsset/Editor/AssetBundleDebugger/VisualViewers/DebuggerBundleListViewer.cs b/Assets/YooAsset/Editor/AssetBundleDebugger/VisualViewers/DebuggerBundleListViewer.cs index b377e8c2..fc018306 100644 --- a/Assets/YooAsset/Editor/AssetBundleDebugger/VisualViewers/DebuggerBundleListViewer.cs +++ b/Assets/YooAsset/Editor/AssetBundleDebugger/VisualViewers/DebuggerBundleListViewer.cs @@ -208,13 +208,13 @@ namespace YooAsset.Editor _usingTableView.AddColumn(column); } - // BeginTime + // StartTime { var columnStyle = new ColumnStyle(100); columnStyle.Stretchable = false; columnStyle.Searchable = false; columnStyle.Sortable = true; - var column = new TableColumn("BeginTime", "Begin Time", columnStyle); + var column = new TableColumn("StartTime", "Start Time", columnStyle); column.MakeCell = () => { var label = new Label(); @@ -451,7 +451,7 @@ namespace YooAsset.Editor rowData.ProviderInfo = providerInfo; rowData.AddStringValueCell("UsingAssets", providerInfo.AssetPath); rowData.AddStringValueCell("SpawnScene", providerInfo.OriginScene); - rowData.AddStringValueCell("BeginTime", providerInfo.StartTime); + rowData.AddStringValueCell("StartTime", providerInfo.StartTime); rowData.AddLongValueCell("RefCount", providerInfo.ReferenceCount); rowData.AddStringValueCell("Status", providerInfo.Status); sourceDatas.Add(rowData); diff --git a/Assets/YooAsset/Editor/AssetBundleDebugger/VisualViewers/DebuggerOperationListViewer.cs b/Assets/YooAsset/Editor/AssetBundleDebugger/VisualViewers/DebuggerOperationListViewer.cs index 7119519e..68095f54 100644 --- a/Assets/YooAsset/Editor/AssetBundleDebugger/VisualViewers/DebuggerOperationListViewer.cs +++ b/Assets/YooAsset/Editor/AssetBundleDebugger/VisualViewers/DebuggerOperationListViewer.cs @@ -147,13 +147,13 @@ namespace YooAsset.Editor _operationTableView.AddColumn(column); } - // BeginTime + // StartTime { var columnStyle = new ColumnStyle(100); columnStyle.Stretchable = false; columnStyle.Searchable = false; columnStyle.Sortable = true; - var column = new TableColumn("BeginTime", "Begin Time", columnStyle); + var column = new TableColumn("StartTime", "Start Time", columnStyle); column.MakeCell = () => { var label = new Label(); @@ -168,14 +168,14 @@ namespace YooAsset.Editor _operationTableView.AddColumn(column); } - // ProcessTime + // ElapsedMS { var columnStyle = new ColumnStyle(130); columnStyle.Stretchable = false; columnStyle.Searchable = false; columnStyle.Sortable = true; columnStyle.Units = "ms"; - var column = new TableColumn("ProcessTime", "Process Time", columnStyle); + var column = new TableColumn("ElapsedMS", "Elapsed MS", columnStyle); column.MakeCell = () => { var label = new Label(); @@ -259,19 +259,19 @@ namespace YooAsset.Editor _bottomToolbar.Add(button); } - // BeginTime + // StartTime { ToolbarButton button = new ToolbarButton(); - button.text = "BeginTime"; + button.text = "StartTime"; button.style.flexGrow = 0; button.style.width = 100; _bottomToolbar.Add(button); } - // ProcessTime + // ElapsedMS { ToolbarButton button = new ToolbarButton(); - button.text = "ProcessTime (ms)"; + button.text = "ElapsedMS"; button.style.flexGrow = 0; button.style.width = 130; _bottomToolbar.Add(button); @@ -319,8 +319,8 @@ namespace YooAsset.Editor rowData.AddStringValueCell("OperationName", operationInfo.OperationName); rowData.AddLongValueCell("Priority", operationInfo.Priority); rowData.AddDoubleValueCell("Progress", operationInfo.Progress); - rowData.AddStringValueCell("BeginTime", operationInfo.StartTime); - rowData.AddLongValueCell("LoadingTime", operationInfo.ElapsedMS); + rowData.AddStringValueCell("StartTime", operationInfo.StartTime); + rowData.AddLongValueCell("ElapsedMS", operationInfo.ElapsedMS); rowData.AddStringValueCell("Status", operationInfo.Status.ToString()); rowData.AddStringValueCell("Desc", operationInfo.OperationDesc); _sourceDatas.Add(rowData); @@ -408,20 +408,20 @@ namespace YooAsset.Editor container.Add(label); } - // BeginTime + // StartTime { var label = new Label(); - label.name = "BeginTime"; + label.name = "StartTime"; label.style.flexGrow = 0f; label.style.width = 100; label.style.unityTextAlign = TextAnchor.MiddleLeft; container.Add(label); } - // ProcessTime + // ElapsedMS { var label = new Label(); - label.name = "ProcessTime"; + label.name = "ElapsedMS"; label.style.flexGrow = 0f; label.style.width = 130; label.style.unityTextAlign = TextAnchor.MiddleLeft; @@ -464,15 +464,15 @@ namespace YooAsset.Editor label.text = operationInfo.Progress.ToString(); } - // BeginTime + // StartTime { - var label = container.Q