EVENT TYPE HEARTBEAT

From Dragon Age Toolset Wiki
Jump to: navigation, search

The documentation on this page is incomplete, obsolete, or otherwise in need of a thorough review. The current content may provide a good starting point for this, but do not rely on its accuracy when using it to design content.

Source:
events_h
Sent when:
Legacy Heartbeat event. Left for the consumption of modders. Be careful with it, it's not nice to run on a lot of creatures...
Sent from:
Sent to:
creatures
Parameters:

Usage

case EVENT_TYPE_HEARTBEAT:
{
object oCreator = GetEventCreator(ev); //
float fHeartbeatElapsed = GetEventFloat(ev, 0); //

// insert event-handling code here

break;
}