Cnstructions
Introduction
The Instructions member in an IInstructable represents all of the instructions which have been created and added to the IInstructable. Instructions can be added to the InstructionList a number of ways:
Through a direct add, such as by calling:
Through InstructionManager helper methods, such as by calling:
Through the "fluent instruction" for instructions, such as by calling:
Clear
Instructions.Clear will remove all instructions which are held by an object. Clear can be used to cancel any existing instructions. For example, the following code will set an IInstructable to move to the X value ater 3 seconds, but then cancel that instruction and move it instead after 2 seconds.
Last updated