Closed mpbod closed 9 years ago
Achieved with this.
temporal.loop(4000, function() {
board.display.draw("O");
temporal.delay(150, function(){ board.display.draw("-")});
temporal.delay(300, function(){ board.display.draw("O")});
temporal.delay(450, function(){ board.display.draw("-")});
temporal.delay(600, function(){ board.display.draw("O")});
});
Closing the issue.
Nesting like this does not execute the queue inside. Is there another way to execute this? Thanks :)