Difference between revisions of "SetSubGraphFloatVariable - Actor"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>Arthmoor
(Added reference to the animation variable data.)
imported>Rasikko
m (→‎Notes: Fixed link.)
Line 24: Line 24:


== Notes ==
== Notes ==
*A full list of variables can be found here : [http://www.creationkit.com/List_of_Animation_Variables List of Animation Variables.]
*A full list of variables can be found here : [https://www.creationkit.com/index.php?title=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.]
*External discussion thread is available [http://forums.bethsoft.com/topic/1360112-full-dump-of-all-animation-variables/ here.]

Revision as of 06:26, 20 December 2017

Member of: Actor Script (Requires 1.6)

Set a variable on all of an actor's sub graphs.

Syntax

Function SetSubGraphFloatVariable(string asVariableName, float afValue) native

Parameters

  • asVariableName: The variable name of the variable you'd like to set on all actor's sub graphs.
  • afValue: The value you'd like to set for the above variable.

Return Value

None.

Examples

; Set Jake's skin's blend time to 1.0 seconds.
Jake.SetSubGraphFloatVariable("fBlendTime", 1.0)

Notes

  • External discussion thread is available here.

See Also