Closed mohayonao closed 10 years ago
default append mode will be true
true
cc.execute(code); // same as cc.execute(code, true)
cc.isPlaying();// return true or false
now
var cc = new CoffeeCollider(); cc.play(); cc.execute(code); // cc.pause();
new (auto run interface)
var cc = new CoffeeCollider(); cc.run(code); // play & execute // cc.pause(); // (in the future) auto stop
cc.load("test.coffee", function(code) { cc.run(code); });
default append mode should not be changed. it's very bad changing.
default append mode will be
true
now
new (auto run interface)