12345678910111213141516171819202122232425 |
- /**
- * @license Licensed under the Apache License, Version 2.0 (the "License"):
- * http://www.apache.org/licenses/LICENSE-2.0
- */
- /**
- * @fileoverview Generating Arduino code for colour blocks.
- *
- * TODO: These blocks do not really serve a purpose for Arduino code.
- */
- 'use strict';
- goog.provide('Blockly.Python.colour');
- goog.require('Blockly.Python');
- Blockly.Python['colour_picker'] = Blockly.Python.noGeneratorCodeInline;
- Blockly.Python['colour_random'] = Blockly.Python.noGeneratorCodeInline;
- Blockly.Python['colour_rgb'] = Blockly.Python.noGeneratorCodeInline;
- Blockly.Python['colour_blend'] = Blockly.Python.noGeneratorCodeInline;
|