Global web icon
google.com
https://groups.google.com/g/blockly
Blockly - Google Groups
Feel free to post questions about developing with Blockly, demos of things you've built, or make suggestions for features you'd like to see in the future. But if you've found a bug, please report it over on our GitHub issues so we can prioritize it appropriately.
Global web icon
google.com
https://groups.google.com/g/blockly/c/tj4OEPDgDr0
How to add a custom logic block with block-plus-minus
The code generation step for your custom blocks is a separate concern. The block-code generator function doesn't need to know that your block has a mutator or plus and minus buttons. It only needs to care about the current state of the block. So you can follow the same code generation steps you would follow for any other custom block you've written. If you're new to that, check out the guide here.
Global web icon
google.com
https://groups.google.com/g/blockly/c/MX1VCkAgosY
Blockly Summit 2025: New sessions in EdTech, AI, accessibility and more
Attend 50 newly added talks and workshops covering block-based programming topics in EdTech, Robotics, AI & ML, Accessibility, and Enterprise use of Blockly.
Global web icon
google.com
https://groups.google.com/g/blockly/c/QlQgQ4BhDAU
Blockly Games: Bird - level 9 - Google Groups
This gets the bird further along, but she then gets stuck with the "y < 60" condition intended for flying away from the worm, since that also applies when she flies towards the nest. The solution is the same, just make the condition you don't want to apply more specific so it doesn't apply later on:
Global web icon
google.com
https://groups.google.com/g/blockly/c/wNn4lT5Amgk
Including Blockly in NextJS or SolidStart - Google Groups
The web frameworks I am familiar with are NextJS (react & webpack) and SolidStart (solidjs & vite), no preferences.
Global web icon
google.com
https://groups.google.com/g/blockly-games/c/i9YLBs…
Blockly Games Movie 08 - Google Groups
Thanks for your help. I was able to correct this puzzle. The green ball needed to be drawn for the second half of the movie, not just the last frame of the movie. Thanks!
Global web icon
google.com
https://groups.google.com/g/blockly/c/6djoW_r0Jfc
C++ Code generator for Blockly - Google Groups
Blockly isn't statically typed by default. C++ is. It's way easier to make Blockly work with static types (there's native support, you just have to set it up) than to build the necessary C++ infrastructure to handle Blockly's mixed types, especially if you want the resulting C++ code to look like something a human might have written, and especially if you don't want to have to define a wrapper ...
Global web icon
google.com
https://groups.google.com/g/blockly/c/HJSBOExeODA
How I can create Blockly with C# - Google Groups
To create your own C# generator it is best to start with one of the existing generator files and slowly convert it over to C#. It will be trickier because C# is a strongly typed language, but strong typing is supported! For more info about creating a generator see this issue, or this, this, this, and this post.
Global web icon
google.com
https://groups.google.com/g/blockly-games/c/xMwt-J…
Blocky Games: Turtle 9 - Google Groups
Hello, Attached is an animation showing the difference between the expected solution and your solution. As one can see, there's a slight difference in the angle of the moon. Instead of "left by 72, backwards 20", try "right by 120, forwards 20". However, your are right. Your solution is close enough that there's no educational benefit in Blockly Games rejecting it and forcing the student to ...
Global web icon
google.com
https://groups.google.com/g/blockly/c/p2WOUmtH8v4
Blockly with Raspberry PI GPIO/RPIO libaries - Google Groups
I'm currently trying to further develop my project by doing what I have already done in Python, in blockly - which is to control a JunkBot (Consisting of pens, a motor and a base robot body) with the Raspberry Pi and a motorboard attached.