Skip to content

Instantly share code, notes, and snippets.

@maluke
maluke / robot.js
Created December 3, 2012 20:41
Zolmesiter fork
var Robot = function(robot){
robot.turnLeft(robot.angle % 90);
//robot.turnGunRight(90);
robot.clone();
this.direction = 1;
};
Robot.prototype.onIdle = function(ev) {
var robot = ev.robot;
robot.ahead(1);
if (robot.parentId) {