Use this space for questions related to what you're learning. For any other type of support (website, learning platform, payments, etc...) please get in touch using the contact form.
The Bridges and Invisible Walls scenes does not existRuben TeijeiroI'm trying to find the scenes mentioned in the challenge:
> For the bridges and invisible walls, I prepared two scenes for you:
> bridges.tscn
> invisible_walls.tscn
but I can only find the tres elements instead:
res://levels/rooms/tilesets/tileset_invisible_walls.tres
res://levels/rooms/tilesets/tileset_bridges.tres20Dec. 09, 2024
An additional feature to add to the bulletiguessfiveIf you want the bullet to disappear when firing at bullets and not when the walls are invisible you can add this feature in the bullet scene and enable it to detect collision mask 2 or what the mask is set for the walls and props in your rooms.
If you want to figure it out yourself then pause here but this was my solution.
You can add this in the body entered in _ready function:
```gdscript
if body is TileMapLayer:
# Invisible walls visibility is false
if body.is_collision_enabled() and body.is_visible_in_tree():
queue_free()
```10Nov. 29, 2024
Lesson Q&A
Use this space for questions related to what you're learning. For any other type of support (website, learning platform, payments, etc...) please get in touch using the contact form.