UE3:UITickableObjectProxy (UDK)
From Unreal Wiki, The Unreal Engine Documentation Site
- Package:
- Engine
- Implemented interfaces:
- UITickableObject
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. |
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.