SetEffectEngineInteger

From Dragon Age Toolset Wiki
Revision as of 20:13, 29 March 2015 by Sunjammer (Talk | contribs) (Minor editing, adding "See also" section)

Jump to: navigation, search

Sets the specified integer on the effect Engine Data structure

effect SetEffectEngineInteger(
effect efEffect,
int nIndex,
int nValue
);
Parameters:
efEffect
The effect to set the value on
nIndex
The index of the value to set
nValue
The value to be set
Returns:

Returns the modified effect, returns an invalid effect on error.

Source:

script.ldf

Description

Sets the specified integer on the effect

Remarks

The Engine Effect data structure is used to communicate with the game engine and can only be written to and not read from scripting. It is separate from general purpose Effect data structure which used exchange information.

See also