Test aggressive object culling

This commit is contained in:
2022-06-17 20:14:47 +01:00
parent f365f18ee8
commit 261bb0bb6b
11 changed files with 38 additions and 16 deletions
+4
View File
@@ -28,6 +28,8 @@ data Configuration = Configuration
, _debug_walls :: Bool
, _debug_view_clip_bounds :: RoomClipping
, _debug_pathing :: Bool
, _debug_remove_LOS :: Bool
, _debug_cull_more_lights :: Bool
}
deriving (Generic, Show)
data ResFactor = FullRes | HalfRes | QuarterRes
@@ -77,4 +79,6 @@ defaultConfig = Configuration
, _debug_view_clip_bounds = NoRoomClipBoundaries
, _debug_pathing = False
, _debug_walls = False
, _debug_remove_LOS = False
, _debug_cull_more_lights = False
}