mirror of
https://github.com/JHDev2006/Super-Mario-Bros.-Remastered-Public.git
synced 2025-10-22 07:28:14 +00:00
9 lines
173 B
GDScript
9 lines
173 B
GDScript
extends Node2D
|
|
|
|
|
|
func _ready() -> void:
|
|
update()
|
|
|
|
func update() -> void:
|
|
visible = !LevelEditor.playing_level and Global.current_game_mode == Global.GameMode.LEVEL_EDITOR
|