lettuce
Version:
Lettuce JS, Mini Mobile Framework for Romantic with DSL.
14 lines (13 loc) • 553 B
JavaScript
game.PlayScreen = me.ScreenObject.extend({
/**
* action to perform on state change
*/
onResetEvent: function() {
// clear the background
me.game.world.addChild(new me.ColorLayer("background", "#000000", 0), 0);
// add a few squares
me.game.world.addChild(new game.square(10, 10, {width: 100, height: 100}), 1);
me.game.world.addChild(new game.square(400, 300, {width: 100, height: 100}), 2);
me.game.world.addChild(new game.square(750, 600, {width: 100, height: 100}), 1);
}
});