UiDisplayGroup#

class omni.kit.property.usd.UiDisplayGroup(
name: str,
ordered: bool,
props: List[UsdPropertyUiEntry] | None = None,
ignore_groups: bool = False,
)#

Bases: object

A class to represent a USD display group.

Methods

__init__(name, ordered[, props, ignore_groups])

add_prop(prop, nested_groups)

Add a property to the display group.

get_children()

Get the children of the display group.

get_sub_props()

Get the sub properties of the display group.

__init__(
name: str,
ordered: bool,
props: List[UsdPropertyUiEntry] | None = None,
ignore_groups: bool = False,
)#
add_prop(
prop: UsdPropertyUiEntry,
nested_groups: List[str],
) None#

Add a property to the display group.

get_children() List[Type[UiDisplayGroup] | UsdPropertyUiEntry]#

Get the children of the display group.

get_sub_props() List[UsdPropertyUiEntry]#

Get the sub properties of the display group.