-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #211 from ucsd-cse125-sp24/feat/torch-anim
Feat/torch anim
- Loading branch information
Showing
11 changed files
with
147 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,30 @@ | ||
{ | ||
|
||
"game": { | ||
"maze": { | ||
"directory": "maps", | ||
"procedural": false, | ||
"procedural": true, | ||
"maze_file": "test/orb_drop.maze" | ||
}, | ||
"disable_enemies": true | ||
}, | ||
"network": { | ||
"server_ip": "localhost", | ||
"server_port": 2355 | ||
}, | ||
"server": { | ||
"lobby_name": "Hope you're doing well!", | ||
"lobby_broadcast": true, | ||
"max_players": 1, | ||
"disable_dm": true, | ||
"skip_intro": true | ||
}, | ||
"client": { | ||
"default_name": "Conan O'Brien", | ||
"lobby_discovery": true, | ||
"fullscreen": false, | ||
"draw_bboxes": false, | ||
"fps_counter": true, | ||
"presentation": false, | ||
"render": 100 | ||
} | ||
"network": { | ||
"server_ip": "localhost", | ||
"server_port": 2355 | ||
}, | ||
"server": { | ||
"lobby_name": "Hope you're doing well!", | ||
"lobby_broadcast": true, | ||
"max_players": 1, | ||
"disable_dm": false, | ||
"skip_intro": true | ||
}, | ||
"client": { | ||
"default_name": "Conan O'Brien", | ||
"lobby_discovery": true, | ||
"fullscreen": true, | ||
"draw_bboxes": false, | ||
"fps_counter": true, | ||
"presentation": false, | ||
"render": 75 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,5 +43,6 @@ enum class ModelType { | |
FireballTrapDown, | ||
SunGod, | ||
Mirror, | ||
LightCut | ||
LightCut, | ||
TorchPost | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
######### | ||
#.......# | ||
#.......# | ||
#.......# | ||
#.......# | ||
#.......# | ||
#...@...# | ||
#.......# | ||
######### | ||
###[### | ||
#.....# | ||
{..3..} | ||
#.....# | ||
#.....# | ||
#.....# | ||
{.@...} | ||
#.....# | ||
###]### |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters