Difference between revisions of "EVENT TYPE EXIT"

From Dragon Age Toolset Wiki
Jump to: navigation, search
(split out of event)
 
m (Updating template)
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
*<b>Sent When:</b> A creature exits the object receiving the event
+
{{event
*<b>Sent From:</b> engine
+
|sourcefile  = script.ldf
*<b>Sent To:</b> AOEs, areas, triggers
+
|sourcemodule =
Parameters:
+
|sortkey      = EXIT
*<b>Creator:</b> creature exiting the object
+
|when        = A creature exits the object receiving the event
 +
|from        = engine
 +
|to          = [[AOE]]s, [[area]]s, [[trigger]]s
 +
|tocategory1  = AOE
 +
|tocategory2  = area
 +
|tocategory3  = trigger
 +
|creatorname  = oExiter
 +
|creatordesc  = creature exiting the object
 +
}}
  
[[Category:Event types|EXIT]]
+
== See Also ==
 +
 
 +
[[EVENT_TYPE_ENTER]]

Latest revision as of 19:12, 21 August 2011

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