ScriptEntityData

Inherits from EntityData

Summary

Constructors

ScriptEntityData()
ScriptEntityData(guid: Guid)
ScriptEntityData(other: EntityData)
ScriptEntityData(other: GameObjectData)
ScriptEntityData(other: GameDataContainer)
ScriptEntityData(other: DataContainer)

Properties

Name Type
code string
realm Realm

Static members

Name Type
ScriptEntityData.typeInfo TypeInformation

Constructors

ScriptEntityData

ScriptEntityData()

Creates a new ScriptEntityData frostbite instance.

ScriptEntityData

ScriptEntityData(guid: Guid)

Creates a new ScriptEntityData frostbite instance and assigns it the provided Guid.

Parameters

Name Type Description
guid Guid The Guid to assign to the newly created instance.

ScriptEntityData

ScriptEntityData(other: EntityData)

Casts an instance of type EntityData to ScriptEntityData. Will throw an error when trying to cast from an unsupported type.

Parameters

Name Type Description
other EntityData The instance to cast to ScriptEntityData.

ScriptEntityData

ScriptEntityData(other: GameObjectData)

Casts an instance of type GameObjectData to ScriptEntityData. Will throw an error when trying to cast from an unsupported type.

Parameters

Name Type Description
other GameObjectData The instance to cast to ScriptEntityData.

ScriptEntityData

ScriptEntityData(other: GameDataContainer)

Casts an instance of type GameDataContainer to ScriptEntityData. Will throw an error when trying to cast from an unsupported type.

Parameters

Name Type Description
other GameDataContainer The instance to cast to ScriptEntityData.

ScriptEntityData

ScriptEntityData(other: DataContainer)

Casts an instance of type DataContainer to ScriptEntityData. Will throw an error when trying to cast from an unsupported type.

Parameters

Name Type Description
other DataContainer The instance to cast to ScriptEntityData.

Properties

code

string

realm

Realm

Static members

typeInfo

TypeInformation

The type information for the ScriptEntityData type.

Last modified April 26, 2020: Update frostbite type documentation (8b14351c)