unreal.OpenTrackIOOptionalInt32¶
- class unreal.OpenTrackIOOptionalInt32(is_set: bool = False, value: int = 0)¶
Bases:
StructBaseContains an int32 and bIsSet flag, mimicking TOptional, to be exposed in Blueprints. The intention is that it is clear to the user if the value contained has been set by the sender or not.
C++ Source:
Plugin: LiveLinkOpenTrackIO
Module: LiveLinkOpenTrackIO
File: LiveLinkOpenTrackIOTypes.h
Editor Properties: (see get_editor_property/set_editor_property)
is_set(bool): [Read-Write] Whether Value has been set or notvalue(int32): [Read-Write] The actual int32 value (only valid when bIsSet == true)