Sets new keys on the fcurve. If there were already keys set on the fcurve, they are discarded.
FCurve.SetKeys( Object in_vsaKeys ); |
FCurve.SetKeys( Keys ); |
Parameter | Type | Description |
---|---|---|
Keys | Array of Doubles | The Array can be a 1- or 2- dimensional array. For a 2-dimensional array the first dimension contains the key/value pairs. The key value must be in frames. |
' ' This VBScript example demonstrates how to set keys on an fcurve ' set oNull = ActiveSceneRoot.AddNull() set oFCurve = oNull.posx.AddFCurve() oFCurve.SetKeys( Array( 1, 10, 2, 20, 3, 30 ) ) |