My program doesn't have bugs. It just develops random features.

UE3:OnlineStats (UDK)

From Unreal Wiki, The Unreal Engine Documentation Site
Revision as of 12:47, 6 November 2009 by (Talk)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
UDK Object >> OnlineStats
Package: 
Engine
Direct subclasses:
OnlineStatsRead, OnlineStatsWrite
This class in other games:
UT3

Base class for stats read and write objects. Contains common structures and methods used by both read and write objects.

Properties

ViewIdMappings

Type: array<Settings.StringIdToStringMapping>

Modifiers: const

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

Native functions

GetViewId

native function bool GetViewId (name ViewName, out int ViewId)

Searches the view id mappings to find the view id that matches the name

Parameters:

  • ViewName - the name of the view being searched for
  • ViewId - the id of the view that matches the name

Returns:

true if it was found, false otherwise

GetViewName

native function name GetViewName (int ViewId)

Finds the human readable name for the view

Parameters:

  • ViewId - the id to look up in the mappings table

Returns:

the name of the view that matches the id or NAME_None if not found