EVENT TYPE EXIT

From Dragon Age Toolset Wiki
Revision as of 16:55, 20 August 2009 by BryanDerksen (Talk | contribs)

Jump to: navigation, search
Source:
script.ldf
Sent when:
A creature exits the object receiving the event
Sent from:
engine
Sent to:
AOEs, areas, triggers
Parameters:
  • Creator: creature exiting the object

Usage

case EVENT_TYPE_EXIT:
{
object oExiter = GetEventCreator(ev); // creature exiting the object

// insert event-handling code here

break;
}

See also

EVENT_TYPE_ENTER