mirror of
https://github.com/JHDev2006/Super-Mario-Bros.-Remastered-Public.git
synced 2025-10-22 23:48:11 +00:00
17 lines
307 B
GDScript
17 lines
307 B
GDScript
extends Node2D
|
|
|
|
func _enter_tree() -> void:
|
|
hide()
|
|
|
|
func _process(delta: float) -> void:
|
|
hide()
|
|
|
|
func _physics_process(delta: float) -> void:
|
|
hide()
|
|
|
|
func _ready() -> void:
|
|
hide()
|
|
|
|
func update() -> void:
|
|
visible = !LevelEditor.playing_level and Global.current_game_mode == Global.GameMode.LEVEL_EDITOR
|