![]() |
Attention | Topic was automatically imported from the old Question2Answer platform. |
![]() |
Asked By | i_love_godot |
Godot 3.2 BETA 4
Hi,
I’m creating a sliding door for a maze. I want to be able to raise/lower the door without it spilling into the surrounding parts of the maze since the maze walls are quite thin. A little searching shows that Control
nodes have the ability to clip content to their rect, but controls are drawn above other elements. I need my door to be behind other elements on the tilemap.
Is there a way of doing this with a regular node that I can position in the scene tree as needed. The door itself will be an Area2D
to detect collisions when the door isn’t open. Therefore the “invisible” part of the door would need to be unreactive to any collisions and not just transparent.
Any ideas would be appreciated. Thanks