From 0127a8ec6c66a9abaeb97f0b02b70d5d91a835cc Mon Sep 17 00:00:00 2001 From: Lucas Fryzek Date: Thu, 26 Sep 2024 15:59:53 +0100 Subject: bsp_level_generator: Add special door tile Having a specific door tile will prevent overlapping doors from generating as the check for a floor next to the door will fail. --- scripts/tile.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/tile.gd') diff --git a/scripts/tile.gd b/scripts/tile.gd index 6243b9c..87bc2a3 100644 --- a/scripts/tile.gd +++ b/scripts/tile.gd @@ -1,3 +1,3 @@ extends Node -enum Tile {FLOOR, WALL} +enum Tile {FLOOR, WALL, DOOR} -- cgit