GameEntityData

Inherits from SpatialEntityData

Summary

Constructors

GameEntityData()
GameEntityData(guid: Guid)
GameEntityData(other: SpatialEntityData)
GameEntityData(other: EntityData)
GameEntityData(other: GameObjectData)
GameEntityData(other: GameDataContainer)
GameEntityData(other: DataContainer)

Properties

Name Type
components GameObjectData[]
enabled bool
runtimeComponentCount int

Static members

Name Type
GameEntityData.typeInfo TypeInformation

Constructors

GameEntityData

GameEntityData()

Creates a new GameEntityData frostbite instance.

GameEntityData

GameEntityData(guid: Guid)

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

Parameters

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

GameEntityData

GameEntityData(other: SpatialEntityData)

Casts an instance of type SpatialEntityData to GameEntityData. Will throw an error when trying to cast from an unsupported type.

Parameters

Name Type Description
other SpatialEntityData The instance to cast to GameEntityData.

GameEntityData

GameEntityData(other: EntityData)

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

Parameters

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

GameEntityData

GameEntityData(other: GameObjectData)

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

Parameters

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

GameEntityData

GameEntityData(other: GameDataContainer)

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

Parameters

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

GameEntityData

GameEntityData(other: DataContainer)

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

Parameters

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

Properties

components

GameObjectData[]

enabled

bool

runtimeComponentCount

int

Static members

typeInfo

TypeInformation

The type information for the GameEntityData type.

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