Difference between revisions of "EVENT TYPE ENTER"

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

Revision as of 16:56, 20 August 2009

Source:
script.ldf
Sent when:
A creature enters the object receiving the event
Sent from:
engine
Sent to:
AOEs, areas, triggers
Parameters:
  • Creator: creature entering the object

Usage

case EVENT_TYPE_ENTER:
{
object oEnterer = GetEventCreator(ev); // creature entering the object

// insert event-handling code here

break;
}

See also

EVENT_TYPE_EXIT