Difference between revisions of "EVENT TYPE EXIT"

From Dragon Age Toolset Wiki
Jump to: navigation, search
m (update template)
Line 11: Line 11:
 
|creatordesc= creature exiting the object
 
|creatordesc= creature exiting the object
 
}}
 
}}
 +
 +
==See also ==
 +
 +
[[EVENT_TYPE_ENTER]]

Revision as of 16:55, 20 August 2009

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