renaming for compatibility reasons
This commit is contained in:
parent
d7c8f089a4
commit
d364698c1a
|
|
@ -103,7 +103,7 @@ func _show_buttons():
|
||||||
else:
|
else:
|
||||||
$AnimationPlayer.play("RESET")
|
$AnimationPlayer.play("RESET")
|
||||||
|
|
||||||
func hide():
|
func vanish():
|
||||||
if visible:
|
if visible:
|
||||||
var tween = create_tween()
|
var tween = create_tween()
|
||||||
tween.tween_property(self, "modulate", Color(0, 0, 0), 0.4)
|
tween.tween_property(self, "modulate", Color(0, 0, 0), 0.4)
|
||||||
|
|
@ -112,7 +112,7 @@ func hide():
|
||||||
visible = false
|
visible = false
|
||||||
if has_stage: State.leave_stage(self)
|
if has_stage: State.leave_stage(self)
|
||||||
|
|
||||||
func show():
|
func reveal():
|
||||||
if !visible:
|
if !visible:
|
||||||
$Panel/Content/ContentNotes.visible = State.show_content_notes
|
$Panel/Content/ContentNotes.visible = State.show_content_notes
|
||||||
$Panel/Content/Buttons/VBoxContainer/skip.visible = State.allow_skipping and not is_board and not skipped
|
$Panel/Content/Buttons/VBoxContainer/skip.visible = State.allow_skipping and not is_board and not skipped
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue