Skip to main content

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.

new GlobalConfigGenerator().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:

new GlobalConfigGenerator().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:

new GlobalConfigGenerator()
.showDialogDebugTab(true)
.dialogDebugTabFormat('flat')