EVENT TYPE SET INTERACTIVE

From Dragon Age Toolset Wiki
Jump to: navigation, search

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