|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
goog.provide('Blockly.Blocks.motion');
|
|
|
|
goog.require('Blockly.Blocks');
|
|
goog.require('Blockly.Colours');
|
|
goog.require('Blockly.constants');
|
|
goog.require('Blockly.ScratchBlocks.VerticalExtensions');
|
|
|
|
|
|
Blockly.Blocks['motion_movesteps'] = {
|
|
|
|
|
|
|
|
|
|
init: function() {
|
|
this.jsonInit({
|
|
"message0": Blockly.Msg.MOTION_MOVESTEPS,
|
|
"args0": [
|
|
{
|
|
"type": "input_value",
|
|
"name": "STEPS"
|
|
}
|
|
],
|
|
"category": Blockly.Categories.motion,
|
|
"extensions": ["colours_motion", "shape_statement"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_movebacksteps'] = {
|
|
|
|
|
|
|
|
|
|
init: function() {
|
|
this.jsonInit({
|
|
"message0": "move back %1 steps",
|
|
"args0": [
|
|
{
|
|
"type": "input_value",
|
|
"name": "STEPS"
|
|
}
|
|
],
|
|
"category": Blockly.Categories.motion,
|
|
"extensions": ["colours_motion", "shape_statement"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_moveupdownsteps'] = {
|
|
|
|
|
|
|
|
|
|
init: function() {
|
|
this.jsonInit({
|
|
"message0": "move %1 %2 steps",
|
|
"args0": [
|
|
{
|
|
"type": "field_dropdown",
|
|
"name": "DIRECTION",
|
|
"options": [
|
|
['up', 'up'],
|
|
['down', 'down']
|
|
]
|
|
},
|
|
{
|
|
"type": "input_value",
|
|
"name": "STEPS"
|
|
}
|
|
],
|
|
"category": Blockly.Categories.motion,
|
|
"extensions": ["colours_motion", "shape_statement"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_turnright'] = {
|
|
|
|
|
|
|
|
|
|
init: function() {
|
|
this.jsonInit({
|
|
"message0": Blockly.Msg.MOTION_TURNRIGHT,
|
|
"args0": [
|
|
{
|
|
"type": "field_image",
|
|
"src": Blockly.mainWorkspace.options.pathToMedia + "rotate-right.svg",
|
|
"width": 24,
|
|
"height": 24
|
|
},
|
|
{
|
|
"type": "input_value",
|
|
"name": "DEGREES"
|
|
}
|
|
],
|
|
"category": Blockly.Categories.motion,
|
|
"extensions": ["colours_motion", "shape_statement"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_turnleft'] = {
|
|
|
|
|
|
|
|
|
|
init: function() {
|
|
this.jsonInit({
|
|
"message0": Blockly.Msg.MOTION_TURNLEFT,
|
|
"args0": [
|
|
{
|
|
"type": "field_image",
|
|
"src": Blockly.mainWorkspace.options.pathToMedia + "rotate-left.svg",
|
|
"width": 24,
|
|
"height": 24
|
|
},
|
|
{
|
|
"type": "input_value",
|
|
"name": "DEGREES"
|
|
}
|
|
],
|
|
"category": Blockly.Categories.motion,
|
|
"extensions": ["colours_motion", "shape_statement"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_turnrightaroundxy'] = {
|
|
|
|
|
|
|
|
|
|
init: function () {
|
|
this.jsonInit({
|
|
"message0": "turn %1 %2 degrees around x: %3 y: %4",
|
|
"args0": [
|
|
{
|
|
"type": "field_image",
|
|
"src": Blockly.mainWorkspace.options.pathToMedia + "rotate-right.svg",
|
|
"width": 24,
|
|
"height": 24
|
|
},
|
|
{
|
|
"type": "input_value",
|
|
"name": "DEGREES"
|
|
},
|
|
{
|
|
"type": "input_value",
|
|
"name": "X"
|
|
},
|
|
{
|
|
"type": "input_value",
|
|
"name": "Y"
|
|
}
|
|
],
|
|
"category": Blockly.Categories.motion,
|
|
"extensions": ["colours_motion", "shape_statement"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_turnleftaroundxy'] = {
|
|
|
|
|
|
|
|
|
|
init: function () {
|
|
this.jsonInit({
|
|
"message0": "turn %1 %2 degrees around x: %3 y: %4",
|
|
"args0": [
|
|
{
|
|
"type": "field_image",
|
|
"src": Blockly.mainWorkspace.options.pathToMedia + "rotate-left.svg",
|
|
"width": 24,
|
|
"height": 24
|
|
},
|
|
{
|
|
"type": "input_value",
|
|
"name": "DEGREES"
|
|
},
|
|
{
|
|
"type": "input_value",
|
|
"name": "X"
|
|
},
|
|
{
|
|
"type": "input_value",
|
|
"name": "Y"
|
|
}
|
|
],
|
|
"category": Blockly.Categories.motion,
|
|
"extensions": ["colours_motion", "shape_statement"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_pointindirection'] = {
|
|
|
|
|
|
|
|
|
|
init: function() {
|
|
this.jsonInit({
|
|
"message0": Blockly.Msg.MOTION_POINTINDIRECTION,
|
|
"args0": [
|
|
{
|
|
"type": "input_value",
|
|
"name": "DIRECTION"
|
|
}
|
|
],
|
|
"category": Blockly.Categories.motion,
|
|
"extensions": ["colours_motion", "shape_statement"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_pointtowards_menu'] = {
|
|
|
|
|
|
|
|
|
|
init: function() {
|
|
this.jsonInit({
|
|
"message0": "%1",
|
|
"args0": [
|
|
{
|
|
"type": "field_dropdown",
|
|
"name": "TOWARDS",
|
|
"options": [
|
|
[Blockly.Msg.MOTION_POINTTOWARDS_POINTER, '_mouse_'],
|
|
[Blockly.Msg.MOTION_POINTTOWARDS_RANDOM, '_random_']
|
|
]
|
|
}
|
|
],
|
|
"colour": Blockly.Colours.motion.secondary,
|
|
"colourSecondary": Blockly.Colours.motion.secondary,
|
|
"colourTertiary": Blockly.Colours.motion.tertiary,
|
|
"extensions": ["output_string"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_turnaround'] = {
|
|
|
|
|
|
|
|
|
|
init: function() {
|
|
this.jsonInit({
|
|
"message0": "turn around",
|
|
"category": Blockly.Categories.motion,
|
|
"extensions": ["colours_motion", "shape_statement"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_pointinrandomdirection'] = {
|
|
|
|
|
|
|
|
|
|
init: function () {
|
|
this.jsonInit({
|
|
"message0": "point in random direction",
|
|
"category": Blockly.Categories.motion,
|
|
"extensions": ["colours_motion", "shape_statement"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_pointtowardsxy'] = {
|
|
|
|
|
|
|
|
|
|
init: function () {
|
|
this.jsonInit({
|
|
"message0": "point towards x: %1 y: %2",
|
|
"args0": [
|
|
{
|
|
"type": "input_value",
|
|
"name": "X"
|
|
},
|
|
{
|
|
"type": "input_value",
|
|
"name": "Y"
|
|
}
|
|
],
|
|
"category": Blockly.Categories.motion,
|
|
"extensions": ["colours_motion", "shape_statement"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_pointtowards'] = {
|
|
|
|
|
|
|
|
|
|
init: function() {
|
|
this.jsonInit({
|
|
"message0": Blockly.Msg.MOTION_POINTTOWARDS,
|
|
"args0": [
|
|
{
|
|
"type": "input_value",
|
|
"name": "TOWARDS"
|
|
}
|
|
],
|
|
"category": Blockly.Categories.motion,
|
|
"extensions": ["colours_motion", "shape_statement"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_goto_menu'] = {
|
|
|
|
|
|
|
|
|
|
init: function() {
|
|
this.jsonInit({
|
|
"message0": "%1",
|
|
"args0": [
|
|
{
|
|
"type": "field_dropdown",
|
|
"name": "TO",
|
|
"options": [
|
|
[Blockly.Msg.MOTION_GOTO_POINTER, '_mouse_'],
|
|
[Blockly.Msg.MOTION_GOTO_RANDOM, '_random_']
|
|
]
|
|
}
|
|
],
|
|
"colour": Blockly.Colours.motion.secondary,
|
|
"colourSecondary": Blockly.Colours.motion.secondary,
|
|
"colourTertiary": Blockly.Colours.motion.tertiary,
|
|
"extensions": ["output_string"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_gotoxy'] = {
|
|
|
|
|
|
|
|
|
|
init: function() {
|
|
this.jsonInit({
|
|
"message0": Blockly.Msg.MOTION_GOTOXY,
|
|
"args0": [
|
|
{
|
|
"type": "input_value",
|
|
"name": "X"
|
|
},
|
|
{
|
|
"type": "input_value",
|
|
"name": "Y"
|
|
}
|
|
],
|
|
"category": Blockly.Categories.motion,
|
|
"extensions": ["colours_motion", "shape_statement"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_goto'] = {
|
|
|
|
|
|
|
|
|
|
init: function() {
|
|
this.jsonInit({
|
|
"message0": Blockly.Msg.MOTION_GOTO,
|
|
"args0": [
|
|
{
|
|
"type": "input_value",
|
|
"name": "TO"
|
|
}
|
|
],
|
|
"category": Blockly.Categories.motion,
|
|
"extensions": ["colours_motion", "shape_statement"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_glidesecstoxy'] = {
|
|
|
|
|
|
|
|
|
|
init: function() {
|
|
this.jsonInit({
|
|
"message0": Blockly.Msg.MOTION_GLIDESECSTOXY,
|
|
"args0": [
|
|
{
|
|
"type": "input_value",
|
|
"name": "SECS"
|
|
},
|
|
{
|
|
"type": "input_value",
|
|
"name": "X"
|
|
},
|
|
{
|
|
"type": "input_value",
|
|
"name": "Y"
|
|
}
|
|
],
|
|
"category": Blockly.Categories.motion,
|
|
"extensions": ["colours_motion", "shape_statement"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_glidedirectionstepsinseconds'] = {
|
|
|
|
|
|
|
|
|
|
init: function() {
|
|
this.jsonInit({
|
|
"message0": "glide %1 steps %2 in %3 secs",
|
|
"args0": [
|
|
{
|
|
"type": "input_value",
|
|
"name": "STEPS"
|
|
},
|
|
{
|
|
"type": "field_dropdown",
|
|
"name": "DIRECTION",
|
|
"options": [
|
|
['forwards', 'forwards'],
|
|
['backwards', 'backwards'],
|
|
['up', 'up'],
|
|
['down', 'down']
|
|
]
|
|
},
|
|
{
|
|
"type": "input_value",
|
|
"name": "SECS"
|
|
},
|
|
],
|
|
"category": Blockly.Categories.motion,
|
|
"extensions": ["colours_motion", "shape_statement"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_glideto_menu'] = {
|
|
|
|
|
|
|
|
|
|
init: function() {
|
|
this.jsonInit({
|
|
"message0": "%1",
|
|
"args0": [
|
|
{
|
|
"type": "field_dropdown",
|
|
"name": "TO",
|
|
"options": [
|
|
[Blockly.Msg.MOTION_GLIDETO_POINTER, '_mouse_'],
|
|
[Blockly.Msg.MOTION_GLIDETO_RANDOM, '_random_']
|
|
]
|
|
}
|
|
],
|
|
"colour": Blockly.Colours.motion.secondary,
|
|
"colourSecondary": Blockly.Colours.motion.secondary,
|
|
"colourTertiary": Blockly.Colours.motion.tertiary,
|
|
"extensions": ["output_string"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_glideto'] = {
|
|
|
|
|
|
|
|
|
|
init: function() {
|
|
this.jsonInit({
|
|
"message0": Blockly.Msg.MOTION_GLIDETO,
|
|
"args0": [
|
|
{
|
|
"type": "input_value",
|
|
"name": "SECS"
|
|
},
|
|
{
|
|
"type": "input_value",
|
|
"name": "TO"
|
|
}
|
|
],
|
|
"category": Blockly.Categories.motion,
|
|
"extensions": ["colours_motion", "shape_statement"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_changebyxy'] = {
|
|
|
|
|
|
|
|
|
|
init: function() {
|
|
this.jsonInit({
|
|
"message0": "change by x: %1 y: %2",
|
|
"args0": [
|
|
{
|
|
"type": "input_value",
|
|
"name": "DX"
|
|
},
|
|
{
|
|
"type": "input_value",
|
|
"name": "DY"
|
|
}
|
|
],
|
|
"category": Blockly.Categories.motion,
|
|
"extensions": ["colours_motion", "shape_statement"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_changexby'] = {
|
|
|
|
|
|
|
|
|
|
init: function() {
|
|
this.jsonInit({
|
|
"message0": Blockly.Msg.MOTION_CHANGEXBY,
|
|
"args0": [
|
|
{
|
|
"type": "input_value",
|
|
"name": "DX"
|
|
}
|
|
],
|
|
"category": Blockly.Categories.motion,
|
|
"extensions": ["colours_motion", "shape_statement"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_setx'] = {
|
|
|
|
|
|
|
|
|
|
init: function() {
|
|
this.jsonInit({
|
|
"message0": Blockly.Msg.MOTION_SETX,
|
|
"args0": [
|
|
{
|
|
"type": "input_value",
|
|
"name": "X"
|
|
}
|
|
],
|
|
"category": Blockly.Categories.motion,
|
|
"extensions": ["colours_motion", "shape_statement"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_changeyby'] = {
|
|
|
|
|
|
|
|
|
|
init: function() {
|
|
this.jsonInit({
|
|
"message0": Blockly.Msg.MOTION_CHANGEYBY,
|
|
"args0": [
|
|
{
|
|
"type": "input_value",
|
|
"name": "DY"
|
|
}
|
|
],
|
|
"category": Blockly.Categories.motion,
|
|
"extensions": ["colours_motion", "shape_statement"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_sety'] = {
|
|
|
|
|
|
|
|
|
|
init: function() {
|
|
this.jsonInit({
|
|
"message0": Blockly.Msg.MOTION_SETY,
|
|
"args0": [
|
|
{
|
|
"type": "input_value",
|
|
"name": "Y"
|
|
}
|
|
],
|
|
"category": Blockly.Categories.motion,
|
|
"extensions": ["colours_motion", "shape_statement"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_ifonedgebounce'] = {
|
|
|
|
|
|
|
|
|
|
init: function() {
|
|
this.jsonInit({
|
|
"message0": Blockly.Msg.MOTION_IFONEDGEBOUNCE,
|
|
"category": Blockly.Categories.motion,
|
|
"extensions": ["colours_motion", "shape_statement"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_ifonspritebounce'] = {
|
|
|
|
|
|
|
|
|
|
init: function () {
|
|
this.jsonInit({
|
|
"message0": "if touching %1, bounce",
|
|
"args0": [
|
|
{
|
|
"type": "input_value",
|
|
"name": "SPRITE"
|
|
}
|
|
],
|
|
"category": Blockly.Categories.motion,
|
|
"extensions": ["colours_motion", "shape_statement"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_ifonxybounce'] = {
|
|
|
|
|
|
|
|
|
|
init: function () {
|
|
this.jsonInit({
|
|
"message0": "if touching x: %1 y: %2, bounce",
|
|
"args0": [
|
|
{
|
|
"type": "input_value",
|
|
"name": "X"
|
|
},
|
|
{
|
|
"type": "input_value",
|
|
"name": "Y"
|
|
}
|
|
],
|
|
"category": Blockly.Categories.motion,
|
|
"extensions": ["colours_motion", "shape_statement"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_setrotationstyle'] = {
|
|
|
|
|
|
|
|
|
|
init: function() {
|
|
this.jsonInit({
|
|
"message0": Blockly.Msg.MOTION_SETROTATIONSTYLE,
|
|
"args0": [
|
|
{
|
|
"type": "field_dropdown",
|
|
"name": "STYLE",
|
|
"options": [
|
|
[Blockly.Msg.MOTION_SETROTATIONSTYLE_LEFTRIGHT, 'left-right'],
|
|
['up-down', 'up-down'],
|
|
['look at', 'look at'],
|
|
[Blockly.Msg.MOTION_SETROTATIONSTYLE_DONTROTATE, 'don\'t rotate'],
|
|
[Blockly.Msg.MOTION_SETROTATIONSTYLE_ALLAROUND, 'all around']
|
|
]
|
|
}
|
|
],
|
|
"category": Blockly.Categories.motion,
|
|
"extensions": ["colours_motion", "shape_statement"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_xposition'] = {
|
|
|
|
|
|
|
|
|
|
init: function() {
|
|
this.jsonInit({
|
|
"message0": Blockly.Msg.MOTION_XPOSITION,
|
|
"category": Blockly.Categories.motion,
|
|
"checkboxInFlyout": true,
|
|
"extensions": ["colours_motion", "output_number"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_yposition'] = {
|
|
|
|
|
|
|
|
|
|
init: function() {
|
|
this.jsonInit({
|
|
"message0": Blockly.Msg.MOTION_YPOSITION,
|
|
"category": Blockly.Categories.motion,
|
|
"checkboxInFlyout": true,
|
|
"extensions": ["colours_motion", "output_number"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_direction'] = {
|
|
|
|
|
|
|
|
|
|
init: function() {
|
|
this.jsonInit({
|
|
"message0": Blockly.Msg.MOTION_DIRECTION,
|
|
"category": Blockly.Categories.motion,
|
|
"checkboxInFlyout": true,
|
|
"extensions": ["colours_motion", "output_number"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_scroll_right'] = {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
init: function() {
|
|
this.jsonInit({
|
|
"message0": Blockly.Msg.MOTION_SCROLLRIGHT,
|
|
"args0": [
|
|
{
|
|
"type": "input_value",
|
|
"name": "DISTANCE"
|
|
}
|
|
],
|
|
"category": Blockly.Categories.motion,
|
|
"extensions": ["colours_motion", "shape_statement"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_scroll_up'] = {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
init: function() {
|
|
this.jsonInit({
|
|
"message0": Blockly.Msg.MOTION_SCROLLUP,
|
|
"args0": [
|
|
{
|
|
"type": "input_value",
|
|
"name": "DISTANCE"
|
|
}
|
|
],
|
|
"category": Blockly.Categories.motion,
|
|
"extensions": ["colours_motion", "shape_statement"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_move_sprite_to_scene_side'] = {
|
|
|
|
|
|
|
|
|
|
init: function () {
|
|
this.jsonInit({
|
|
"message0": "move to stage %1",
|
|
"args0": [
|
|
{
|
|
"type": "field_dropdown",
|
|
"name": "ALIGNMENT",
|
|
"options": [
|
|
[Blockly.Msg.MOTION_ALIGNSCENE_BOTTOMLEFT, 'bottom-left'],
|
|
['bottom', 'bottom'],
|
|
[Blockly.Msg.MOTION_ALIGNSCENE_BOTTOMRIGHT, 'bottom-right'],
|
|
[Blockly.Msg.MOTION_ALIGNSCENE_MIDDLE, 'middle'],
|
|
[Blockly.Msg.MOTION_ALIGNSCENE_TOPLEFT, 'top-left'],
|
|
['top', 'top'],
|
|
[Blockly.Msg.MOTION_ALIGNSCENE_TOPRIGHT, 'top-right'],
|
|
['left', 'left'],
|
|
['right', 'right'],
|
|
]
|
|
}
|
|
],
|
|
"category": Blockly.Categories.motion,
|
|
"extensions": ["colours_motion", "shape_statement"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_align_scene'] = {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
init: function() {
|
|
this.jsonInit({
|
|
"message0": Blockly.Msg.MOTION_ALIGNSCENE,
|
|
"args0": [
|
|
{
|
|
"type": "field_dropdown",
|
|
"name": "ALIGNMENT",
|
|
"options": [
|
|
[Blockly.Msg.MOTION_ALIGNSCENE_BOTTOMLEFT, 'bottom-left'],
|
|
[Blockly.Msg.MOTION_ALIGNSCENE_BOTTOMRIGHT, 'bottom-right'],
|
|
[Blockly.Msg.MOTION_ALIGNSCENE_MIDDLE, 'middle'],
|
|
[Blockly.Msg.MOTION_ALIGNSCENE_TOPLEFT, 'top-left'],
|
|
[Blockly.Msg.MOTION_ALIGNSCENE_TOPRIGHT, 'top-right']
|
|
]
|
|
}
|
|
],
|
|
"category": Blockly.Categories.motion,
|
|
"extensions": ["colours_motion", "shape_statement"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_xscroll'] = {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
init: function() {
|
|
this.jsonInit({
|
|
"message0": Blockly.Msg.MOTION_XSCROLL,
|
|
"category": Blockly.Categories.motion,
|
|
"extensions": ["colours_motion", "output_number"]
|
|
});
|
|
}
|
|
};
|
|
|
|
Blockly.Blocks['motion_yscroll'] = {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
init: function() {
|
|
this.jsonInit({
|
|
"message0": Blockly.Msg.MOTION_YSCROLL,
|
|
"category": Blockly.Categories.motion,
|
|
"extensions": ["colours_motion", "output_number"]
|
|
});
|
|
}
|
|
};
|
|
|