Worst-case scenario: the UEd Goblin wipes the map and burns down your house.

UE3:OnlineStatsRead (UT3)

From Unreal Wiki, The Unreal Engine Documentation Site

(Redirected from UE3:ColumnMetaData (UT3))
Jump to: navigation, search
UT3 Object >> OnlineStats >> OnlineStatsRead

Contents

Package: 
Engine
Direct subclass:
UTLeaderboardReadBase
This class in other games:
UDK

Stats class that holds the read request definitions and the resulting data

[edit] Properties

[edit] ColumnIds

Type: array<int>

Modifiers: const

The columns to read in the view we are interested in

[edit] ColumnMappings

Type: array<ColumnMetaData>

Modifiers: const

Provides metadata for column ids so that we can present their human readable form

[edit] Rows

Type: array<OnlineStatsRow>

Modifiers: const

The rows of data returned by the online service

[edit] SortColumnId

Type: int

Modifiers: const

The column id to use for sorting rank

[edit] TotalRowsInView

Type: int

Modifiers: const

The total number of rows in the view

[edit] ViewId

Type: int

Modifiers: const

The unique id of the view that these stats are from

[edit] ViewName

Type: string

Modifiers: const

The name of the view in human readable terms

[edit] Structs

[edit] ColumnMetaData

Modifiers: native

Provides human readable values for column ids

int Id 
Id for the given string
name Name 
Human readable form of the Id
string ColumnName 
The name displayed in column headings in the UI

[edit] OnlineStatsColumn

Modifiers: native

A single instance of a stat in a row

int ColumnNo 
The ordinal value of the column
Settings.SettingsData StatValue 
The value of the stat for this column

[edit] OnlineStatsRow

Modifiers: native

Holds a single player's set of data for this stats view

OnlineSubsystem.UniqueNetId PlayerId 
The unique player id of the player these stats are for
Settings.SettingsData Rank 
The rank of the player in this stats view
string NickName 
Player's online nickname
array<OnlineStatsColumn> Columns 
The set of columns (stat instances) for this row

[edit] Delegates

[edit] OnStatsReadComplete

delegate OnStatsReadComplete ()

Delegate used to notify the caller when stats read has completed