8 lines
139 B
GDScript
8 lines
139 B
GDScript
extends Node3D
|
|
|
|
@onready var gallery: Control = $%Gallery
|
|
|
|
|
|
func _on_button_gallery_pressed() -> void:
|
|
gallery.visible = !gallery.visible
|