Programmatically build objects with blocks
Hi
is there a mod to allow kids to programmatically build objects with blocks in Minetest?
For example, using PiMinecraft, one can use the command line to create all sorts of things:
The idea would be to use problem solving strategies and code to do things more "efficiently".
Keen to hear your suggestions!
is there a mod to allow kids to programmatically build objects with blocks in Minetest?
For example, using PiMinecraft, one can use the command line to create all sorts of things:
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
- Code: Select all
mc.setBlock(2,3,20, ICE)
mc.setBlock(5,4,20, ICE)
mc.setBlock(5,5,20, ICE)
mc.setBlock(5,6,20, ICE)
mc.setBlock(5,7,20, ICE)
mc.setBlock(5,8,20, ICE)
#using array
blocks = [(7,4),(7,5),(7,6),(8,3),(9,3),(8,7),(9,7),(10,4),(10,5),(10,6)]
mc.setBlocks(blocks)
The idea would be to use problem solving strategies and code to do things more "efficiently".
Keen to hear your suggestions!