mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-21 19:50:00 -06:00
Issue/453 (#556)
* Introduced guiName to PropertyOwner * Added requirement that PropertyOwner::identifier may not contain whitespaces * Changed Name to Identifier in asset and scene files * Added new PropertyOwner to RenderEngine that owns the ScreenSpaceRenderables * Moved Name and GuiPath into GUI group * Added user-facing names to layer groups
This commit is contained in:
@@ -280,15 +280,19 @@ void CaptionText(const char* text) {
|
||||
|
||||
GUI::GUI()
|
||||
: GuiComponent("Main")
|
||||
, _globalProperty("Global Properties")
|
||||
, _globalProperty("Global", "Global Properties")
|
||||
, _sceneProperty(
|
||||
"Scene Properties",
|
||||
"SceneProperties", "Scene Properties",
|
||||
GuiPropertyComponent::UseTreeLayout::Yes
|
||||
)
|
||||
, _screenSpaceProperty("ScreenSpace Properties")
|
||||
, _moduleProperty("Module Properties")
|
||||
, _virtualProperty("Virtual Properties")
|
||||
, _featuredProperties("Featured Properties", GuiPropertyComponent::UseTreeLayout::No)
|
||||
, _screenSpaceProperty("ScreenSpaceProperties", "ScreenSpace Properties")
|
||||
, _moduleProperty("ModuleProperties", "Module Properties")
|
||||
, _virtualProperty("VirtualProperties", "Virtual Properties")
|
||||
, _featuredProperties(
|
||||
"FeaturedProperties",
|
||||
"Featured Properties",
|
||||
GuiPropertyComponent::UseTreeLayout::No
|
||||
)
|
||||
, _showInternals(false)
|
||||
, _showHelpText(ShowHelpInfo, true)
|
||||
, _helpTextDelay(HelpTextDelayInfo, 1.0, 0.0, 10.0)
|
||||
|
||||
Reference in New Issue
Block a user