example skyscraper

This commit is contained in:
walterhiggins 2013-04-14 14:55:59 +01:00
parent 51374ac1db
commit c32f8aab5f

View file

@ -0,0 +1,11 @@
Drone.extend('skyscraper',function(floors){
this.chkpt('skyscraper');
for (var i = 0;i < floors; i++)
{
this.box(blocks.iron,20,1,20)
.up()
.box0(blocks.glass_pane,20,3,20);
this.up(3);
}
this.move('skyscraper');
});