Difference between revisions of "EVENT TYPE EXIT"

From Dragon Age Toolset Wiki
Jump to: navigation, search
m (|sourcefile=script.ldf)
m (Updating template)
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
{{event
 
{{event
|sourcefile=script.ldf
+
|sourcefile   = script.ldf
|when= A creature exits the object receiving the event
+
|sourcemodule =
|from= engine
+
|sortkey      = EXIT
|to= [[AOE]]s, [[area]]s, [[trigger]]s
+
|when         = A creature exits the object receiving the event
|creatorname = oExiter
+
|from         = engine
|creatordesc= creature exiting the object
+
|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