EVENT TYPE ENTER

From Dragon Age Toolset Wiki
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;
}

Comments

Surprisingly, for a trigger placed at the entry point for an area, this event fires for the trigger before EVENT_TYPE_AREALOAD_PRELOADEXIT.

Further work is needed to establish when EVENT_TYPE_ENTER for an area fires, relative to the above-mentioned events.

See also

EVENT_TYPE_EXIT