animation
Creates chains from the specified curves.
oReturn = CreateChainfromCurve( [InputObjs], [NbJoints], [UseCns] ); |
Returns an XSICollection that contains the roots of the created chains.
| Parameter | Type | Description |
|---|---|---|
| InputObjs | String | List of curves on which to
place chains
Default Value: Selected chains |
| NbJoints | Integer | Number of bones to create
Default Value: 5 |
| UseCns | Boolean | True to constrain the chain to the curve (using Deform by Curve
and Path constraints)
Default Value: False |
' 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
|