We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 510adce commit 6c1860aCopy full SHA for 6c1860a
src/blocks/scratch3_operators.js
@@ -33,10 +33,15 @@ class Scratch3OperatorsBlocks {
33
operator_contains: this.contains,
34
operator_mod: this.mod,
35
operator_round: this.round,
36
- operator_mathop: this.mathop
+ operator_mathop: this.mathop,
37
+ checkbox: this.checkbox
38
};
39
}
40
41
+ checkbox () {
42
+ return true;
43
+ }
44
+
45
add (args) {
46
return Cast.toNumber(args.NUM1) + Cast.toNumber(args.NUM2);
47
0 commit comments