Difference between revisions of "EVENT TYPE OPTIONS CHANGED"

From Dragon Age Toolset Wiki
Jump to: navigation, search
(Created page with '{{needs review}} {{event |sourcefile=script.ldf |when= |from= |to= }} OPTIONS_CHANGED')
 
Line 2: Line 2:
 
{{event
 
{{event
 
|sourcefile=script.ldf
 
|sourcefile=script.ldf
|when=
+
|when= The player changes a game option from the options menu
|from=
+
|from= [[engine]]
|to=
+
|to= module
 +
|tocategory1=module
 +
|sortkey=OPTIONS_CHANGED
 
}}
 
}}
 
[[Category:Event types|OPTIONS_CHANGED]]
 

Revision as of 18:43, 19 August 2009

The documentation on this page is incomplete, obsolete, or otherwise in need of a thorough review. The current content may provide a good starting point for this, but do not rely on its accuracy when using it to design content.

Source:
script.ldf
Sent when:
The player changes a game option from the options menu
Sent from:
engine
Sent to:
module
Parameters:
None.

Usage

case EVENT_TYPE_OPTIONS_CHANGED:
{

// insert event-handling code here

break;
}