AISystemAsset

Inherits from GameAISystem

Summary

Constructors

AISystemAsset()
AISystemAsset(guid: Guid)
AISystemAsset(other: GameAISystem)
AISystemAsset(other: Asset)
AISystemAsset(other: DataContainer)

Properties

Name Type
behaviours AIVehicleTypes | nil
orders OrderSettings | nil
settings AISettingsData | nil

Static members

Name Type
AISystemAsset.typeInfo TypeInformation

Constructors

AISystemAsset

AISystemAsset()

Creates a new AISystemAsset frostbite instance.

AISystemAsset

AISystemAsset(guid: Guid)

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

Parameters

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

AISystemAsset

AISystemAsset(other: GameAISystem)

Casts an instance of type GameAISystem to AISystemAsset. Will throw an error when trying to cast from an unsupported type.

Parameters

Name Type Description
other GameAISystem The instance to cast to AISystemAsset.

AISystemAsset

AISystemAsset(other: Asset)

Casts an instance of type Asset to AISystemAsset. Will throw an error when trying to cast from an unsupported type.

Parameters

Name Type Description
other Asset The instance to cast to AISystemAsset.

AISystemAsset

AISystemAsset(other: DataContainer)

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

Parameters

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

Properties

behaviours

AIVehicleTypes | nil

orders

OrderSettings | nil

settings

AISettingsData | nil

Static members

typeInfo

TypeInformation

The type information for the AISystemAsset type.

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