如何将 "Functions tab" 块添加到 Google 中
How to add the "Functions tab" to Google's blockly
根据blockly自带的Demo,我们在生成代码时只有逻辑、循环、数学和文本选项。这里:https://blockly-demo.appspot.com/static/demos/generator/index.html
我如何添加函数和变量选项卡,因为提供的文档似乎很浅。文档:https://developers.google.com/blockly/installation/code-generators
提前致谢!
块状演示左侧的"menu items"或"tabs"组成"Toolbox"
要在工具箱上添加更多项目,请选中 https://developers.google.com/blockly/installation/toolbox
例如,在将函数和变量添加到工具箱的情况下,将下面的 xml 代码添加到您的 index.html。
<category name="Variables" custom="VARIABLE"></category>
<category name="Functions" custom="PROCEDURE"></category>
稍微检查一下 index.html 就会告诉您 xml 代码是在哪里编译的,您可以适当地插入代码。
根据blockly自带的Demo,我们在生成代码时只有逻辑、循环、数学和文本选项。这里:https://blockly-demo.appspot.com/static/demos/generator/index.html
我如何添加函数和变量选项卡,因为提供的文档似乎很浅。文档:https://developers.google.com/blockly/installation/code-generators
提前致谢!
块状演示左侧的"menu items"或"tabs"组成"Toolbox" 要在工具箱上添加更多项目,请选中 https://developers.google.com/blockly/installation/toolbox
例如,在将函数和变量添加到工具箱的情况下,将下面的 xml 代码添加到您的 index.html。
<category name="Variables" custom="VARIABLE"></category>
<category name="Functions" custom="PROCEDURE"></category>
稍微检查一下 index.html 就会告诉您 xml 代码是在哪里编译的,您可以适当地插入代码。