Difference between revisions of "User:Mojo/CFExample"
Jump to navigation
Jump to search
imported>Mojo (Created page with "Gets the value of a variable on the reference's animation graph - Int/Bool version. =Parameters= * String: The name of the variable to read from the graph. =Return Value= T...") |
imported>Mojo |
||
Line 1: | Line 1: | ||
Gets the value of a variable on the reference's animation graph - Int/Bool version. | Gets the value of a variable on the reference's animation graph - Int/Bool version. | ||
=Parameters= | ==Parameters== | ||
* String: The name of the variable to read from the graph. | * String: The name of the variable to read from the graph. | ||
=Return Value= | ==Return Value== | ||
The variable's current value. | The variable's current value. | ||
=Notes= | ==Notes== | ||
*This condition function can be used on boolean variables as well. | *This condition function can be used on boolean variables as well. | ||
**Returns 1 for TRUE and 0 for FALSE | **Returns 1 for TRUE and 0 for FALSE | ||
Line 15: | Line 15: | ||
*External discussion thread is available [http://forums.bethsoft.com/topic/1360112-full-dump-of-all-animation-variables/ here.] | *External discussion thread is available [http://forums.bethsoft.com/topic/1360112-full-dump-of-all-animation-variables/ here.] | ||
=See Also= | ==See Also== | ||
*[[GetGraphVariableFloat]] | *[[GetGraphVariableFloat]] | ||
=Papyrus Version= | ==Papyrus Version== | ||
*[[GetAnimationVariableInt - ObjectReference]] | *[[GetAnimationVariableInt - ObjectReference]] | ||
*[[GetAnimationVariableBool - ObjectReference]] | *[[GetAnimationVariableBool - ObjectReference]] |
Latest revision as of 20:44, 13 November 2013
Gets the value of a variable on the reference's animation graph - Int/Bool version.
Parameters[edit | edit source]
- String: The name of the variable to read from the graph.
Return Value[edit | edit source]
The variable's current value.
Notes[edit | edit source]
- This condition function can be used on boolean variables as well.
- Returns 1 for TRUE and 0 for FALSE
- A full list of variables can be found here : List of Animation Variables.
- External discussion thread is available here.