I search for solutions in this order: Past Code, Unreal Source, Wiki, BUF, groups.yahoo, google, screaming at monitor. – RegularX
UE3:OnlineGameplayEvents (UDK)
Object >> OnlineGameplayEvents |
- Package:
- Engine
This is an auto-generated page and may need human attention. Please remove the {{autogenerated}} tag if the page seems reasonably complete or replace it with the {{expand}} tag if the page is not yet complete. |
Holds the gameplay events that were captured in a session
Properties[edit]
bGameplaySessionInProgress[edit]
Type: bool
Modifiers: const
Is a session currently in progress
EventDescList[edit]
Modifiers: const
Table of event descriptions, since they are often duplicated (only events encountered are in the list)
EventNames[edit]
Modifiers: const
Table of gameplay events to remove redundant data
GameplayEvents[edit]
Type: array<GameplayEvent>
Modifiers: const
GameplaySessionID[edit]
Type: Object.Guid
Modifiers: const
Unique session ID
GameplaySessionStartTime[edit]
Type: string
Modifiers: const
Time this session was begun
PlayerEvents[edit]
Type: array<PlayerEvent>
Modifiers: const
PlayerList[edit]
Type: array<PlayerInformation>
Modifiers: const
Structs[edit]
GameplayEvent[edit]
Modifiers: native
Basic information describing a gameplay event, refered to only by a PlayerEvent
- int PlayerEventAndTarget
- PlayerEvent index and TargetPlayer index packed into a single 32bit integer.
high 16 bits= index to PlayerEvent array designating the parent PlayerEvent for this entry. low 16 bits = Index to PlayerList to record the target player associated with this event
- int EventNameAndDesc
- Event Name index and Event Description index packed into a single 32bit integer.
high 16 bits= Index to the gameplay event name. low 16 bits = Additional string attached to this event (extra description).
PlayerEvent[edit]
Modifiers: native
List of events associated with a player within a specific time section
- float EventTime
- Time this event occured
- Object.Vector EventLocation
- Location of this event
- int PlayerIndexAndYaw
- Player index and Yaw Rotation packed into a 32 bit integer.
high 16 bits= Index to PlayerList to record the player associated with this eventy. low 16 bits = FRotation Yaw component of the orientation for the player
- int PlayerPitchAndRoll
- Player Pitch and Yaw Rotation packed into a 32 bit integer.
low 16 bits = FRotation Pitch component of the orientation for the player low 16 bits = FRotation Roll component of the orientation for the player
PlayerInformation[edit]
Modifiers: native
List of player information cached in case the player logs out and GC collects the objects
- string ControllerName
- Controller.Name
- string PlayerName
- Controller.PlayerReplicationInfo.PlayerName
- OnlineSubsystem.UniqueNetId UniqueId
- The unique id that identifies a player on the backend
- bool bIsBot
- Whether the player is a bot or not
- int LastPlayerEventIdx
- Last entry into PlayerEvent associated with this player