Quote:
Originally Posted by inkspell4
How could i add a wait statement into the code between the commands as they run?
|
You can either add a WaitCommand:
Code:
addSequential(new WaitCommand(5));
or you can use a command that does nothing (we have a command called DoNothing which does nothing and returns false from isFinished()) along with addSequential's timeout parameter:
Code:
addSequential(new DoNothing(),5);