Difference between revisions of "GetAnimationVariableFloat - ObjectReference"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>MoopusMaximus
imported>Kahmul
Line 11: Line 11:


== Parameters ==
== Parameters ==
* asVariableName: The name of the variable to read from the graph
* asVariableName: The name of the variable to read from the graph.


== Return Value ==
== Return Value ==
The variable's current value
The variable's current value.


== Examples ==
== Examples ==

Revision as of 15:35, 30 March 2012

Member of: ObjectReference Script

Gets the value of a variable on the reference's animation graph - Float version.

Syntax

float Function GetAnimationVariableFloat(string asVariableName) native

Parameters

  • asVariableName: The name of the variable to read from the graph.

Return Value

The variable's current value.

Examples

Debug.Trace("Current movement speed: " + GetAnimationVariableFloat("Speed"))

Notes

  • A full list of variables can be found here.

See Also