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 |
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 |
| Name | Type | Description |
|---|---|---|
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 |
| Name | Type | Description |
|---|---|---|
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 |
| Name | Type | Description |
|---|---|---|
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 |
| Name | Type | Description |
|---|---|---|
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 |
| Name | Type | Description |
|---|---|---|
Parent |
Class<Object> |
The parent we check if this object is a child of. |
| Name | Type | Description |
|---|---|---|
Is Child |
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 |
| Name | Type | Description |
|---|---|---|
Parent |
Class<Object> |
The parent we check if this type is a child of. |
| Name | Type | Description |
|---|---|---|
Is Child |
Bool |
True if this type is a child of the given type. |