Add a new "Assets/Prefabs/Maze/Maze Completed" folder with multiple FBX models (corner, straight, T/junction, cross, dead-end, pipes, planes, light) and corresponding .meta importer files, plus a folder .meta. Update .idea workspace.xml to remove two tracked asset entries and adjust a workItem duration. Also modify Assets/Scripts/Camera Controller/CameraRotationHandler.cs (minor change). These changes import completed maze assets into the project and tidy up IDE workspace metadata.
Delete unused FusionHub editor images and their .meta files, remove several shaders and test prefabs from Assets, and update .idea/.idea.HALLUCINATE/.idea/workspace.xml (cleanup changelist entries and adjust a workItem duration). Also apply modifications to Assets/Scove/UIScaleTest.unity and Assets/Scripts/UI/UIManager.cs. This cleans up editor-only/unused resources and updates the project workspace to reflect those removals.
Move Maze-related scripts into the Hallucinate.GameSetup.Maze namespace and perform a broad refactor and cleanup. Make MapLocation a readonly struct, add Corridor/Wall/Path constants, and convert Maze into a clearer base class with serialized fields (width, depth, scale, mapParentObject), proper initialization, virtual Generate, and safer DrawMap behavior. Update neighbor-count helpers, tighten method visibility, and improve algorithm implementations (Crawler, Prims, Recursive, Wilsons) to use the new constants and more robust logic (including logging and loop guards). Add a Fisher–Yates Shuffle extension with a static RNG under Hallucinate.GameSetup.Maze.Extensions. Also update IDE metadata (.idea encodings.xml and workspace.xml) to record file encodings and some project settings.