unreal.PyTestStruct

class unreal.PyTestStruct(bool=False, int=0, float=0.0, enum=PyTestEnum.ONE, string='', name='None', text='', string_array=[], string_set=[], string_int_map={})

Bases: unreal.StructBase

Struct to allow testing of the various UStruct features that are exposed to Python wrapped types.

C++ Source:

  • Plugin: PythonScriptPlugin

  • Module: PythonScriptPlugin

  • File: PyTest.h

Editor Properties: (see get_editor_property/set_editor_property)

  • bool (bool): [Read-Write] Bool

  • bool_defaults_only (bool): [Read-Write] Bool Defaults Only

  • bool_instance_only (bool): [Read-Write] Bool Instance Only

  • enum (PyTestEnum): [Read-Write] Enum

  • float (float): [Read-Write] Float

  • int (int32): [Read-Write] Int

  • legacy_int (int32): [Read-Write] Legacy Int deprecated: LegacyInt is deprecated. Please use Int instead.

  • name (Name): [Read-Write] Name

  • string (str): [Read-Write] String

  • string_array (Array(str)): [Read-Write] String Array

  • string_int_map (Map(str, int32)): [Read-Write] String Int Map

  • string_set (Set(str)): [Read-Write] String Set

  • text (Text): [Read-Write] Text

CONSTANT_VALUE = 10

Get Constant Value

Type

(int32)

__add__(other)

Overloads:

  • str Add Str

  • int32 Add Int

  • float Add Float

__iadd__(other)

Overloads:

  • str Add Str

  • int32 Add Int

  • float Add Float

add_float(value) None

Add Float

Parameters

value (float) –

Return type

PyTestStruct

add_int(value) None

Add Int

Parameters

value (int32) –

Return type

PyTestStruct

add_str(value) None

Add Str

Parameters

value (str) –

Return type

PyTestStruct

property bool

[Read-Write] Bool

Type

(bool)

property enum

[Read-Write] Enum

Type

(PyTestEnum)

property float

[Read-Write] Float

Type

(float)

property int

[Read-Write] Int

Type

(int32)

is_bool_set() bool

Is Bool Set

Return type

bool

is_bool_set_old()

deprecated: ‘is_bool_set_old’ was renamed to ‘is_bool_set’.

property legacy_int

[Read-Write] Legacy Int deprecated: LegacyInt is deprecated. Please use Int instead.

Type

(int32)

legacy_is_bool_set() bool

Legacy Is Bool Set deprecated: LegacyIsBoolSet is deprecated. Please use IsBoolSet instead.

Return type

bool

property name

[Read-Write] Name

Type

(Name)

property string

[Read-Write] String

Type

(str)

property string_array

[Read-Write] String Array

Type

(Array(str))

property string_int_map

[Read-Write] String Int Map

Type

(Map(str, int32))

property string_set

[Read-Write] String Set

Type

(Set(str))

property text

[Read-Write] Text

Type

(Text)