Difference between revisions of "GetGraphVariableInt"
Jump to navigation
Jump to search
imported>SJML Bot (Bot creating condition functions pages.) |
CreedAngelus (talk | contribs) (Corrected broken link.) |
||
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
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== | |||
The variable's current value. | |||
==Notes== | |||
*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 : [https://ck.uesp.net/wiki/List_of_Animation_Variables List of Animation Variables.] | |||
*External discussion thread is available [http://forums.bethsoft.com/topic/1360112-full-dump-of-all-animation-variables/ here.] | |||
==See Also== | |||
*[[GetGraphVariableFloat]] | |||
==Papyrus Version== | |||
*[[GetAnimationVariableInt - ObjectReference]] | |||
*[[GetAnimationVariableBool - ObjectReference]] | |||
*[[GetAnimationVariableFloat - ObjectReference]] | |||
[[Category:Condition Functions]] | [[Category:Condition Functions]] |
Latest revision as of 17:08, 18 June 2022
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.