Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bas-boop/unity-maze-gen
Unity maze generator
https://github.com/bas-boop/unity-maze-gen
application csharp game game-development game2d unity
Last synced: 5 days ago
JSON representation
Unity maze generator
- Host: GitHub
- URL: https://github.com/bas-boop/unity-maze-gen
- Owner: bas-boop
- Created: 2023-06-12T12:36:49.000Z (over 1 year ago)
- Default Branch: Develop
- Last Pushed: 2024-03-15T21:58:20.000Z (11 months ago)
- Last Synced: 2024-03-15T22:49:39.068Z (11 months ago)
- Topics: application, csharp, game, game-development, game2d, unity
- Language: C#
- Homepage:
- Size: 1.39 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Unity-maze-gen
A perfect maze generator made in Unity. This is a grid based maze that you can generate with your preferred settings, like size and wich algorithm. This is a solo project for 1 week. This was made as a trial assignment for a possible internship.
# Script highlights
## Generators
[Base maze generator](Een%20maze-gen/Assets/Scripts/Generators/MazeGenerator.cs)
[Prim's generator](Een%20maze-gen/Assets/Scripts/Generators/PrimGenerator.cs)
[Recursive backtracking generator](Een%20maze-gen/Assets/Scripts/Generators/RecursiveBacktrackingGenerator.cs)## Camera
[Camera controller](Een%20maze-gen/Assets/Scripts/CameraController.cs)