Eyeon:Script/Reference/Applications/Fusion/Classes/Operator/Delete
From VFXPedia
< Eyeon:Script | Reference | Applications | Fusion | Classes | Operator
Contents |
Tool : Delete
Arguments
Delete( )
Returns
This function does not return a value.
Remarks
The Delete() function removes the tool from the composition. This also releases the handle to the Fusion Tool object, setting it to nil.
Requirements
- eyeonScript 5.0
- Fusion 5.0
Examples
fusion = Fusion("localhost")
composition = fusion:NewComp()
SetActiveComp(composition)
bg1 = Background({Width = 400, Height = 400, Type = 0, TopLeftRed = 0.6, TopLeftGreen = 0.5, TopLeftBlue = 0.9 })
bg1:Delete()composition:Close()
Tips for Delete (edit)
EyeonTips:Script/Reference/Applications/Fusion/Classes/Operator/Delete