blob: 2a007a3bac43ff0e85d693b81b438339f2c79898 (
plain)
1
2
3
4
5
6
7
8
|
extends Menu
func _ready():
super()
for i in range(1, 6):
var texture = TextureRect.new()
texture.texture = load("res://menu/book/book_%d.svg" % i)
$ScrollContainer/VBoxContainer.add_child(texture)
|