We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6dfd651 commit 9f59c01Copy full SHA for 9f59c01
1 file changed
blocks_vertical/live_tests.js
@@ -6,6 +6,28 @@ goog.require('Blockly.Blocks');
6
goog.require('Blockly.Colours');
7
goog.require('Blockly.ScratchBlocks.VerticalExtensions');
8
9
+Blockly.Blocks['test_spread'] = {
10
+ /**
11
+ * @this Blockly.Block
12
+ */
13
+ init: function () {
14
+ this.jsonInit({
15
+ "message0": '... %1',
16
+ "args0": [
17
+ {
18
+ "type": "input_value",
19
+ "name": "SPREAD",
20
+ "shape": 3
21
+ }
22
+ ],
23
+ "colour": "#808080",
24
+ "category": "...",
25
+ "outputShape": 3,
26
+ "extensions": ["output_string"]
27
+ });
28
+ },
29
+};
30
+
31
Blockly.Blocks['operator_expandableBool'] = {
32
/**
33
* pm: Block for performing multiple truth operations (determined by user)
0 commit comments