From a6ad34f0029f6c8abde9c482e3f13d7b68790bfc Mon Sep 17 00:00:00 2001 From: Tim Mickel Date: Mon, 8 Aug 2016 16:44:48 -0400 Subject: [PATCH] Add primitive for `math_angle`, fixing point in direction --- src/blocks/scratch3_operators.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/blocks/scratch3_operators.js b/src/blocks/scratch3_operators.js index 6ddae6e9a..fa43950ae 100644 --- a/src/blocks/scratch3_operators.js +++ b/src/blocks/scratch3_operators.js @@ -15,6 +15,7 @@ Scratch3OperatorsBlocks.prototype.getPrimitives = function() { 'math_number': this.number, 'math_positive_number': this.number, 'math_whole_number': this.number, + 'math_angle': this.number, 'text': this.text, 'operator_add': this.add, 'operator_subtract': this.subtract,