Remove doNothing method

This commit is contained in:
Florrie 2018-05-01 14:00:31 -03:00
parent 62b8dd93af
commit 25bb4bc82c

View file

@ -35,11 +35,12 @@ class Scratch3MotionBlocks {
motion_xposition: this.getX, motion_xposition: this.getX,
motion_yposition: this.getY, motion_yposition: this.getY,
motion_direction: this.getDirection, motion_direction: this.getDirection,
motion_scroll_right: this.doNothing, // Legacy no-op blocks:
motion_scroll_up: this.doNothing, motion_scroll_right: () => {},
motion_align_scene: this.doNothing, motion_scroll_up: () => {},
motion_xscroll: this.doNothing, motion_align_scene: () => {},
motion_yscroll: this.doNothing motion_xscroll: () => {},
motion_yscroll: () => {}
}; };
} }
@ -259,8 +260,6 @@ class Scratch3MotionBlocks {
getDirection (args, util) { getDirection (args, util) {
return util.target.direction; return util.target.direction;
} }
doNothing () {}
} }
module.exports = Scratch3MotionBlocks; module.exports = Scratch3MotionBlocks;