Difference between revisions of "EVENT TYPE SET INTERACTIVE"

From Dragon Age Toolset Wiki
Jump to: navigation, search
Line 10: Line 10:
 
|sortkey=SET_INTERACTIVE
 
|sortkey=SET_INTERACTIVE
 
}}
 
}}
 +
[[Category:Event types|SET_INTERACTIVE]]

Revision as of 04:04, 4 January 2010

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:
events_h
Sent when:
Sent by script to change interactive state.
Sent from:
Sent to:
placeables
Parameters:
  • Integer 0: Interactivity state to set the object to

Usage

case EVENT_TYPE_SET_INTERACTIVE:
{
int bInteractive = GetEventInteger(ev, 0); // Interactivity state to set the object to

// insert event-handling code here

break;
}