SettingWidgetType#
- class omni.kit.widget.settings.settings_widget.SettingWidgetType(
 - value,
 - names=None,
 - *,
 - module=None,
 - qualname=None,
 - type=None,
 - start=1,
 - boundary=None,
 Bases:
EnumSupported setting UI widget types
Attributes
Setting is a floating-point number.
Setting is a integer number.
Setting is a three color floating-point numbers (0.0-1.0).
Setting is a boolean.
Setting is a string.
Setting is a three double-precision floating-point numbers.
Setting is a two integer numbers.
Setting is a two double-precision floating-point numbers.
Setting is a asset path.
Setting is Combo box.
Setting is Radio buttons.
Setting is Vector3.
- __init__(*args, **kwds)#
 
- ASSET = 8#
 Setting is a asset path.
- BOOL = 3#
 Setting is a boolean.
- COLOR3 = 2#
 Setting is a three color floating-point numbers (0.0-1.0).
- COMBOBOX = 9#
 Setting is Combo box.
- DOUBLE2 = 7#
 Setting is a two double-precision floating-point numbers.
- DOUBLE3 = 5#
 Setting is a three double-precision floating-point numbers.
- FLOAT = 0#
 Setting is a floating-point number.
- INT = 1#
 Setting is a integer number.
- INT2 = 6#
 Setting is a two integer numbers.
- RADIOBUTTON = 10#
 Setting is Radio buttons.
- STRING = 4#
 Setting is a string.
- VECTOR3 = 11#
 Setting is Vector3.