PlayerScore

Summary

Constructors

PlayerScore()
PlayerScore(guid: Guid)

Properties

Name Type
rank int
kills int
deaths int
scoreMultiplier int
score int
globalScoreOriginal int
globalScoreUpdated int
time float
gunMasterLevel int

Methods

Method Returns
Clone() PlayerScore

Static members

Name Type
PlayerScore.typeInfo TypeInformation

Constructors

PlayerScore

PlayerScore()

Creates a new PlayerScore frostbite instance.

PlayerScore

PlayerScore(guid: Guid)

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

Parameters

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

Properties

rank

int

kills

int

deaths

int

scoreMultiplier

int

score

int

globalScoreOriginal

int

globalScoreUpdated

int

time

float

gunMasterLevel

int

Methods

Clone

Clone(): PlayerScore

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
PlayerScore The newly created structure.

Static members

typeInfo

TypeInformation

The type information for the PlayerScore type.

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