mirror of
https://github.com/JHDev2006/Super-Mario-Bros.-Remastered-Public.git
synced 2025-10-27 01:40:57 +00:00
9 lines
196 B
GDScript
9 lines
196 B
GDScript
extends Node2D
|
|
|
|
|
|
func _ready() -> void:
|
|
update()
|
|
|
|
func update() -> void:
|
|
visible = (!LevelEditor.playing_level and Global.current_game_mode == Global.GameMode.LEVEL_EDITOR) or Global.debug_mode
|