Difference between revisions of "SetSubGraphFloatVariable - Actor"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>JLundin
(Created page with "Category:Scripting Category:Papyrus '''Member of:''' Actor Script ''(Requires 1.6)'' Set a variable on all of an actor's sub graphs. == Syntax == <source lang="p...")
 
imported>Arthmoor
(Added reference to the animation variable data.)
Line 22: Line 22:
Jake.SetSubGraphFloatVariable("fBlendTime", 1.0)
Jake.SetSubGraphFloatVariable("fBlendTime", 1.0)
</source>
</source>
== Notes ==
*A full list of variables can be found here : [http://www.creationkit.com/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 ==
== See Also ==
*[[Actor Script]]
*[[Actor Script]]

Revision as of 01:57, 20 April 2014

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