Difference between revisions of "EVENT TYPE MODULE LOAD"

From Dragon Age Toolset Wiki
Jump to: navigation, search
(split out of event)
 
(remove redundant category)
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
*<b>Sent When:</b> The module loads from a save game. This event can fire more than once for a single module or game instance.
+
{{event
*<b>Sent From:</b> engine
+
|sourcefile=script.ldf
*<b>Sent To:</b> module
+
|when= The module loads from a save game. This event can fire more than once for a single module or game instance.
 
+
|from= [[engine]]
Parameters:
+
|tocategory1= module
*<b>Creator:</b> ???
+
|creatorname=
 
+
|creatordesc= {{undocumented}}
[[Category:Event types|MODULE_LOAD]]
+
|sortkey=MODULE_LOAD
 +
}}

Latest revision as of 00:42, 12 February 2010

Source:
script.ldf
Sent when:
The module loads from a save game. This event can fire more than once for a single module or game instance.
Sent from:
engine
Sent to:
Parameters:

Usage

case EVENT_TYPE_MODULE_LOAD:
{

// insert event-handling code here

break;
}