()
| 110 | } |
| 111 | |
| 112 | clicked() { |
| 113 | if (this.timeout == null) { |
| 114 | this.schedule() |
| 115 | this.button.textContent = "Stop" |
| 116 | this.robotElt.firstChild.src = this.imgPath + "robot_moving2x.gif" |
| 117 | } else { |
| 118 | clearTimeout(this.timeout) |
| 119 | this.timeout = null |
| 120 | this.button.textContent = "Start" |
| 121 | this.robotElt.firstChild.src = this.imgPath + "robot_idle2x.png" |
| 122 | } |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | window.runRobotAnimation = function(worldState, robot, robotState) { |