Difference between revisions of "EVENT TYPE SET INTERACTIVE"

From Dragon Age Toolset Wiki
Jump to: navigation, search
(Created page with '{{needs review}} {{event |sourcefile=events_h |when= |from= |to= }} SET_INTERACTIVE')
 
m (remove redundant category)
 
(3 intermediate revisions by 2 users not shown)
Line 2: Line 2:
 
{{event
 
{{event
 
|sourcefile=events_h
 
|sourcefile=events_h
|when=
+
|when= Sent by script to change interactive state.
 
|from=
 
|from=
|to=
+
|to=placeables
 +
|tocategory1=placeable
 +
|int0name=bInteractive
 +
|int0desc=Interactivity state to set the object to
 +
|sortkey=SET_INTERACTIVE
 
}}
 
}}
 
[[Category:Event types|SET_INTERACTIVE]]
 

Latest revision as of 00:44, 12 February 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;
}