colour.js 658 B

12345678910111213141516171819202122232425
  1. /**
  2. * @license Licensed under the Apache License, Version 2.0 (the "License"):
  3. * http://www.apache.org/licenses/LICENSE-2.0
  4. */
  5. /**
  6. * @fileoverview Generating Arduino code for colour blocks.
  7. *
  8. * TODO: These blocks do not really serve a purpose for Arduino code.
  9. */
  10. 'use strict';
  11. goog.provide('Blockly.Python.colour');
  12. goog.require('Blockly.Python');
  13. Blockly.Python['colour_picker'] = Blockly.Python.noGeneratorCodeInline;
  14. Blockly.Python['colour_random'] = Blockly.Python.noGeneratorCodeInline;
  15. Blockly.Python['colour_rgb'] = Blockly.Python.noGeneratorCodeInline;
  16. Blockly.Python['colour_blend'] = Blockly.Python.noGeneratorCodeInline;