aboutsummaryrefslogtreecommitdiff
path: root/Packages/dev.zue.vrcog/Editor
diff options
context:
space:
mode:
Diffstat (limited to 'Packages/dev.zue.vrcog/Editor')
-rw-r--r--Packages/dev.zue.vrcog/Editor/VRCog/FileStatTree.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/Packages/dev.zue.vrcog/Editor/VRCog/FileStatTree.cs b/Packages/dev.zue.vrcog/Editor/VRCog/FileStatTree.cs
index 3929de5..6239b6e 100644
--- a/Packages/dev.zue.vrcog/Editor/VRCog/FileStatTree.cs
+++ b/Packages/dev.zue.vrcog/Editor/VRCog/FileStatTree.cs
@@ -36,6 +36,15 @@ public class FileStatTree : EditorWindow
EditorGUILayout.Space();
+ if (assetList.Count > 0)
+ {
+ EditorGUILayout.HelpBox(
+ "Sizes shown are on-disk file sizes and do not reflect runtime memory usage. " +
+ "A compressed texture may be small on disk but large in VRAM once decompressed, and vice versa. " +
+ "For accurate runtime figures, use the Memory Profiler package.",
+ MessageType.Info);
+ }
+
scrollPos = EditorGUILayout.BeginScrollView(scrollPos);
foreach (var info in assetList)
{