Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames

UnrealEd.PlayerMovementVisualizer

Extends
GameStatsVisualizer
Modifiers
native ( GameStats ) config ( Editor )

Copyright 1998-2011 Epic Games, Inc. All Rights Reserved. Visualizes the movement of players through the map as a series of lines

Core.Object
|   
+-- UnrealEd.GameStatsVisitorImpl
   |   
   +-- UnrealEd.GameStatsVisualizer
      |   
      +-- UnrealEd.PlayerMovementVisualizer

Variables Summary
array<PlayerMovementStatDrawingProperties>DrawingProperties
array<PlayerMovement>Players
Inherited Variables from UnrealEd.GameStatsVisualizer
FriendlyName, OptionsDialog, OptionsDialogName, Parent, SupportedEvents

Structures Summary
MovementSegment
Positions
PlayerMovement
PlayerIndex, PlayerName, Segments, StatSprite, TempPositions
PlayerMovementStatDrawingProperties
PawnClassName, SpriteName, StatSprite
PosEntry
Time, Position, Rotation


Variables Detail

DrawingProperties Source code

var const config array<PlayerMovementStatDrawingProperties> DrawingProperties;
Metadata to help draw the statistics

Players Source code

var array<PlayerMovement> Players;
All data to be drawn by this visualizer


Structures Detail

MovementSegment Source code

struct MovementSegment
{
var array<PosEntry> Positions;
};
String of player positions defining a contiguous movement in game

PlayerMovement Source code

struct PlayerMovement
{
var int PlayerIndex;
var string PlayerName;
var array<MovementSegment> Segments;
var Texture2D StatSprite;
var array<PosEntry> TempPositions;
};
A given player's movement throughout the entire data set

PlayerMovementStatDrawingProperties Source code

struct PlayerMovementStatDrawingProperties
{
var string PawnClassName;
var string SpriteName;
var Texture2D StatSprite;
};
Array of drawing properties per stat type setup in .ini

PosEntry Source code

struct PosEntry
{
var vector Position;
var rotator Rotation;
var float Time;
};
Atomic position/rotation entry at a given time


Defaultproperties

defaultproperties
{
	FriendlyName="Player Movement Visualizer" 
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Creation time: ti 22-3-2011 19:56:55.364 - Created with UnCodeX