renaming for compatibility reasons

This commit is contained in:
betalars 2025-03-23 14:22:40 +01:00
parent d7c8f089a4
commit d364698c1a
1 changed files with 2 additions and 2 deletions

View File

@ -103,7 +103,7 @@ func _show_buttons():
else:
$AnimationPlayer.play("RESET")
func hide():
func vanish():
if visible:
var tween = create_tween()
tween.tween_property(self, "modulate", Color(0, 0, 0), 0.4)
@ -112,7 +112,7 @@ func hide():
visible = false
if has_stage: State.leave_stage(self)
func show():
func reveal():
if !visible:
$Panel/Content/ContentNotes.visible = State.show_content_notes
$Panel/Content/Buttons/VBoxContainer/skip.visible = State.allow_skipping and not is_board and not skipped