StaticModelGroupMemberData

Summary

Constructors

StaticModelGroupMemberData()
StaticModelGroupMemberData(guid: Guid)

Properties

Name Type
instanceTransforms LinearTransform[]
instanceScale float[]
instanceObjectVariation int[]
instanceCastSunShadow bool[]
memberType GamePhysicsEntityData | nil
meshEntityType EntityData | nil
instanceCount int
healthStateEntityManagerId int
physicsPartRange IndexRange
physicsPartCountPerInstance int
networkIdRange IndexRange
networkIdCountPerInstance int

Methods

Method Returns
Clone() StaticModelGroupMemberData

Static members

Name Type
StaticModelGroupMemberData.typeInfo TypeInformation

Constructors

StaticModelGroupMemberData

StaticModelGroupMemberData()

Creates a new StaticModelGroupMemberData frostbite instance.

StaticModelGroupMemberData

StaticModelGroupMemberData(guid: Guid)

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

Parameters

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

Properties

instanceTransforms

LinearTransform[]

instanceScale

float[]

instanceObjectVariation

int[]

instanceCastSunShadow

bool[]

memberType

GamePhysicsEntityData | nil

meshEntityType

EntityData | nil

instanceCount

int

healthStateEntityManagerId

int

physicsPartRange

IndexRange

physicsPartCountPerInstance

int

networkIdRange

IndexRange

networkIdCountPerInstance

int

Methods

Clone

Clone(): StaticModelGroupMemberData

Creates a shallow-copy clone of this structure, which is essentially the equivalent of creating a new structure of the same type and assigning the values of this structure to all of its properties. Any properties that contain structure types (eg. Vec3) will be cloned when assigning, while properties that contain instance types (eg. DataContainer) will be referencing the same instance.

Returns

Type Description
StaticModelGroupMemberData The newly created structure.

Static members

typeInfo

TypeInformation

The type information for the StaticModelGroupMemberData type.

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