v3.0
Returns the master of an instance.
oReturn = GetMaster( InputObjs ); |
Returns an XSICollection object that contains the master of the input instance.
Parameter | Type | Description |
---|---|---|
InputObjs | String | Find master of this Instance
Default Value: Current selection |
dim master GetPrim "Cone", "MyCone" CreateModel "MyCone" Instantiate , , 1, 1, 0, 1 set InstanceObj = GetInstances( "Model" )(0) set master = GetMaster( InstanceObj ) LogMessage "MyCone's master: " & master InspectObj master |