CreateChainfromCurve

Description

Creates chains from the specified curves.

Scripting Syntax

CreateChainfromCurve( [InputObjs], [NbJoints], [UseCns] )

Parameters

Parameter

Type

Description

InputObjs

String

List of curves on which to place chains

Default Value: Selected chains

NbJoints [in/out]

Integer

Number of bones to create

Default Value: 5

UseCns [in/out]

Boolean

True to constrain the chain to the curve (using Deform by Curve and Path constraints)

Default Value: False

Return Value

Returns an XSICollection that contains the roots of the created chains.

Examples

VBScript Example

' Create chains with 10 joints on each selected curve
dim root, roots
set roots = CreateChainFromCurve( , 10)
for each root in roots
   ' do something for each chain
next


Autodesk Softimage v7.5