mirror of
https://github.com/JHDev2006/Super-Mario-Bros.-Remastered-Public.git
synced 2025-10-22 23:48:11 +00:00
Room variation types (#517)
* Global.gd now has an extra variable for current room type * ResourceSetterNew.gd now has variation category for room types The state variable also had to include the room type, since it wouldn't update properly when entering a bonus room from a level that's already underground * LevelClass.gd sets room type on update_theme A new function, get_room_type() allows for the level's room type to be detected, which can easily be overwritten by other level classes. Bonus Rooms are detected by comparing the level's scene path to a pre-defined list of bonus rooms. * Added get_room_type() to CoinHeaven.gd * Added get_room_type() to PipeCutscene.gd Also updates the room type in _enter_tree() since update_theme() isn't called here. * Added get_room_type() to TitleScreen.gd
This commit is contained in:
@@ -10,6 +10,7 @@ func _enter_tree() -> void:
|
||||
theme_time = "Night"
|
||||
else:
|
||||
theme_time = "Day"
|
||||
Global.current_room = get_room_type()
|
||||
Global.level_theme = theme
|
||||
Global.theme_time = theme_time
|
||||
|
||||
@@ -28,3 +29,6 @@ func go_to_level() -> void:
|
||||
|
||||
func play_pipe_sfx() -> void:
|
||||
AudioManager.play_sfx("pipe", $Player1.global_position)
|
||||
|
||||
func get_room_type() -> Global.Room:
|
||||
return Global.Room.PIPE_CUTSCENE
|
||||
|
Reference in New Issue
Block a user