if (atom.input.pressed('move_left')) {
      if (this.dir !== "right") {
          this.newdir = "left";
          createInfo("Info", JSON.stringify({"move": "left"}));
      }