UE3:UITickableObjectProxy (UDK)

From Unreal Wiki, The Unreal Engine Documentation Site
Revision as of 06:52, 17 January 2010 by Wormbo (talk | contribs) (1 revision: class descriptions for UDK January update (part 7))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
UDK Object >> UIRoot >> UITickableObjectProxy
Package:
Engine
Implemented interfaces:
UITickableObject

The purpose of this class is to act as a base for any non-native UI classes that wish to subscribe to the scene's array of tickable objects. This base class implements the UITickableObject interface and routes the call to an event and delegate. It can be used directly (by subscribing to its OnScriptTick delegate) or subclassed (by overriding the ScriptTick event).

Copyright 1998-2009 Epic Games, Inc. All Rights Reserved

Delegates

OnScriptTick

delegate OnScriptTick (UITickableObjectProxy Sender, float DeltaTime)

Delegate for allowing others to subscribe to this object's tick.

Events

ScriptTick

event ScriptTick (float DeltaTime)

This event is called by the native code each frame.