Object

The base class of every object.

Properties

hash : Int

A Hash of this object. This is a value that nearly uniquely identifies this object.

Details
Flags ReadOnly RuntimeSync RuntimeParallel

Display Name

Hash

hash : Int

A Hash of this object. This is a value that nearly uniquely identifies this object.

Details
Flags ReadOnly RuntimeSync RuntimeParallel ClassProp

Display Name

Hash

id : String

Only available for Network Components! Allows access to the Network Components UUID.

Details
Flags ReadOnly RuntimeSync RuntimeParallel

Display Name

ID

isNetworkComponent : Bool

True if this object is a network component and has a id and nick.

Details
Flags ReadOnly RuntimeSync RuntimeParallel

Display Name

Is Network Component

nick : String

Only available for Network Components! Allows access to the Network Components Nick.

Details
Flags RuntimeSync RuntimeParallel

Display Name

Nick

internalName : String

The unreal engine internal name of this object.

Details
Flags ReadOnly RuntimeSync RuntimeParallel

Display Name

internalName

internalName : String

The unreal engine internal name of this object.

Details
Flags ReadOnly RuntimeSync RuntimeParallel ClassProp

Display Name

internalName

internalPath : String

The unreal engine internal path name of this object.

Details
Flags ReadOnly RuntimeSync RuntimeParallel

Display Name

internalPath

internalPath : String

The unreal engine internal path name of this object.

Details
Flags ReadOnly RuntimeSync RuntimeParallel ClassProp

Display Name

internalPath

Functions

getHash () → hash : Int

Returns a hash of this object. This is a value that nearly uniquely identifies this object.

Details

Flags

RuntimeSync RuntimeParallel MemberFunc

Display Name

Get Hash

Return Values
Name Type Description

Hash hash

Int

The hash of this object.

getHash () → hash : Int

Returns the hash of this class. This is a value that nearly uniquely idenfies this object.

Details

Flags

RuntimeSync RuntimeParallel ClassFunc

Display Name

Get Hash

Return Values
Name Type Description

Hash hash

Int

The hash of this class.

getType () → type : Object<Class>

Returns the type (aka class) of this object.

Details

Flags

RuntimeSync RuntimeParallel MemberFunc

Display Name

Get Type

Return Values
Name Type Description

Type type

Object<Class>

The type of this object

getType () → type : Object<Class>

Returns the type (aka class) of this class instance.

Details

Flags

RuntimeSync RuntimeParallel ClassFunc

Display Name

Get Type

Return Values
Name Type Description

Type type

Object<Class>

The type of this class instance

isA (parent : Class<Object>) → isChild : Bool

Checks if this Object is a child of the given typen.

Details

Flags

RuntimeSync RuntimeParallel MemberFunc

Display Name

Is A

Parameters
Name Type Description

Parent parent

Class<Object>

The parent we check if this object is a child of.

Return Values
Name Type Description

Is Child isChild

Bool

True if this object is a child of the given type.

isChildOf (parent : Class<Object>) → isChild : Bool

Checks if this Type is a child of the given typen.

Details

Flags

RuntimeSync RuntimeParallel ClassFunc

Display Name

Is Child Of

Parameters
Name Type Description

Parent parent

Class<Object>

The parent we check if this type is a child of.

Return Values
Name Type Description

Is Child isChild

Bool

True if this type is a child of the given type.