EVENT TYPE ENTER

From Dragon Age Toolset Wiki
Revision as of 00:35, 12 February 2010 by BryanDerksen (Talk | contribs) (remove redundant categories)

Jump to: navigation, search
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