From 7c3db8feb2a84eeb09e949e0532d767e2b62dcb6 Mon Sep 17 00:00:00 2001 From: Ryan Inch Date: Thu, 14 Dec 2023 06:02:40 -0500 Subject: [PATCH] Improve room flag descriptions and include the actual flag at the end. Improve the room flag descriptions to be more informative on what they do and add the actual query string parameter at the end so that it can be looked up in the documentation. --- addons/io_hubs_addon/debugger.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/addons/io_hubs_addon/debugger.py b/addons/io_hubs_addon/debugger.py index eba16896..50e2e70e 100644 --- a/addons/io_hubs_addon/debugger.py +++ b/addons/io_hubs_addon/debugger.py @@ -9,20 +9,20 @@ PARAMS_TO_STRING = { "newLoader": { "name": "Use New Loader", - "description": "Creates the room using the new bitECS loader" + "description": "Makes the room use the new bitECS loader. This causes all media/objects in the room and scene to be loaded with the new loader and has various changes to the UI interface and functionality of objects. This is required for Behavior Graphs. (newLoader)" }, "ecsDebug": { "name": "Show ECS Debug Panel", - "description": "Enables the ECS debugging side panel" + "description": "Enables the ECS debugging side panel to get hierarchical information on the underlying structure of elements in the room and which components are applied to each element. (ecsDebug)" }, "vr_entry_type": { "name": "Skip Entry", - "description": "Omits the entry setup panel and goes straight into the room", + "description": "Omits the entry setup panel and goes straight into the room. (vr_entry_type=2d_now)", "value": "2d_now" }, "debugLocalScene": { "name": "Allow Scene Update", - "description": "Allows scene override. Use this if you want to update the scene. If you just want to spawn an object disable it." + "description": "Allows the scene to be overridden by the contents of the current Blender scene. Enable this if you want to update the scene. Disable this if you just want to spawn an object in the room. (debugLocalScene)" }, }