Prop Dialog Tabs
Default Behavior
By default, all prop dialogs only show tabs that have information (i.e., truthy).
You can check this behavior by clicking props listed in the following scene:
Always show all tabs
You can change the config to always show all dialog tabs regardless of the prop's properties.
- Global Config Generator
- Config
new GlobalConfigGenerator().alwaysShowAllDialogTabs(true)
config.alwaysShowAllDialogTabs = true
Show debug tab
There's also a debug tab that's disabled by default.
By default, the debug tab gives you a json format of all of this prop's properties.
You can enable it with the following:
- Global Config Generator
- Config
new GlobalConfigGenerator().showDialogDebugTab(true)
config.showDialogDebugTab = true
Debug tab flat format
::: info
dialogDebugTabFormat can only be json or flat
:::
You can also make the dialog display the selected prop's properties in flat format.
This is similar to how the general information tab displays the data:
- Global Config Generator
- Config
new GlobalConfigGenerator()
.showDialogDebugTab(true)
.dialogDebugTabFormat('flat')
config.showDialogDebugTab = true
config.dialogDebugTabFormat = 'flat'