v4.0
operator
Selects the inputs of generator operators.
SelectGeneratorInputs( InputObjs ); |
| Parameter | Type | Description |
|---|---|---|
| InputObjs | String | List of generator operators
Default Value: Current selection |
'
' This example illustrates how to select the input text curve primitive
' that was used to create a given text mesh primitive.
CreateMeshText "CurveListToPlanarMeshForText", siPersistentOperation
SelectGeneratorInputs "polymsh"
logMessage "selection = " & GetValue("SelectionList")(0)
' Running this script should log the following:
' ---------------------------------------------
'INFO : selection = text
|