User prompt
Move up all plates that slide in by half the height of a plate
User prompt
Move up the first plate that slides in up by half the height of a plate
User prompt
The first plate that slides in overlaps the initial plate with half the height of a plate
User prompt
The first plate should be at the bottom center of the screen and should not move
User prompt
Game should start with plate in the center that is the tower we build ontop on. Plates should stop moving when placed
User prompt
Plates should move from right to left
User prompt
Plates should slide in from the right
User prompt
Plates by should slide in from the left automatically. Player taps the screen to place them on top of the exciting tower of plates.
Initial prompt
Stacker
===================================================================
--- original.js
+++ change.js
@@ -23,9 +23,9 @@
plates.push(firstPlate);
self.addChild(firstPlate);
var newPlate = new Plate();
newPlate.slide();
- newPlate.y = 2732 - plates.length * newPlate.height + newPlate.height / 2;
+ newPlate.y = 2732 - plates.length * newPlate.height - newPlate.height / 2;
plates.push(newPlate);
self.addChild(newPlate);
stage.on('down', function (obj) {
var topPlate = plates[plates.length - 1];