snowflake + inverted pyramid
thats all
new bopimo shapes idea
hollyleaf
Joined Dec 2024
Posted 2 months ago
nickels
Joined Dec 2024
Posted 2 months ago
i want hollow spheres
Umbreon
Joined Nov 2025
Posted 2 months ago
I want masks, so I can remove parts of a block and easily make windows without having to create 4 individual blocks.
Fun fact, the only reason I want that now is due to a graphical bug in the editor where translucent blocks overlapping each other could sometimes cut right through them, though it seems to fix itself after reloading so it's useless.
Fun fact, the only reason I want that now is due to a graphical bug in the editor where translucent blocks overlapping each other could sometimes cut right through them, though it seems to fix itself after reloading so it's useless.
crime
Joined Nov 2025
Posted 2 months ago
chicken shaped block
LearnCrow
Joined Dec 2024
Posted 2 months ago
is there a hollow cube? that'll help with level optimization i think
nerdydev
Joined Jan 2025
Posted 2 months ago
Originally posted by
Umbreon
2 months ago
Fun fact, the only reason I want that now is due to a graphical bug in the editor where translucent blocks overlapping each other could sometimes cut right through them, though it seems to fix itself after reloading so it's useless.
This is a bug with Godot. I'm pretty sure if you change the renderer, it should be fixed. You can do this by creating an override.cfg file in the same folder as the client executable. Make sure to type in
[rendering]
renderer/renderingmethod="RENDERER"
but replace "RENDERER" with "forwardplus", "mobile", or "gl_compatibility".
[rendering]
renderer/renderingmethod="RENDERER"
but replace "RENDERER" with "forwardplus", "mobile", or "gl_compatibility".
NyanCat
Joined Dec 2024
Posted 2 months ago
Originally posted by
Umbreon
2 months ago
Fun fact, the only reason I want that now is due to a graphical bug in the editor where translucent blocks overlapping each other could sometimes cut right through them, though it seems to fix itself after reloading so it's useless.
actually this is based on some kind of priority system. blocks that were created first render over blocks created afterwards. pushing block data can screw with this, but when a level is loaded the priority is back to creation time. this can be viewed and rearranged in bopjson files (blocks listed in the array are in order of creation) and also applies to hit detection and likely other cases of interacting with multiple blocks at once
NyanCat
Joined Dec 2024
Posted 2 months ago
Originally posted by
NyanCat
2 months ago
saying they "render over" other blocks is a bit of an oversimplification though to be clear it's just kind of hard to explain and easier to observe