update asset bundle debugger

This commit is contained in:
何冠峰
2025-01-20 19:14:29 +08:00
parent 912e2c28a3
commit 655f756d56
6 changed files with 731 additions and 509 deletions

View File

@@ -240,8 +240,8 @@ namespace YooAsset.Editor
{
_currentReport = debugReport;
_frameSlider.label = $"Frame: {debugReport.FrameCount}";
_assetListViewer.FillViewData(debugReport, _searchKeyWord);
_bundleListViewer.FillViewData(debugReport, _searchKeyWord);
_assetListViewer.FillViewData(debugReport);
_bundleListViewer.FillViewData(debugReport);
}
}
@@ -286,8 +286,8 @@ namespace YooAsset.Editor
_searchKeyWord = e.newValue;
if (_currentReport != null)
{
_assetListViewer.FillViewData(_currentReport, _searchKeyWord);
_bundleListViewer.FillViewData(_currentReport, _searchKeyWord);
_assetListViewer.RebuildView(_searchKeyWord);
_bundleListViewer.RebuildView(_searchKeyWord);
}
}
private void OnViewModeMenuChange(DropdownMenuAction action)