EVENT TYPE ENTER

From Dragon Age Toolset Wiki
Revision as of 20:40, 30 July 2009 by BryanDerksen (Talk | contribs) (|sourcefile=script.ldf)

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;
}