mirror of
https://github.com/Redot-Engine/redot-engine.git
synced 2025-12-06 15:21:56 -05:00
12 lines
180 B
GDScript
12 lines
180 B
GDScript
|
|
extends Control
|
|
|
|
# Member variables
|
|
const MAX_BUBBLES = 10
|
|
|
|
|
|
func _ready():
|
|
for i in range(MAX_BUBBLES):
|
|
var bubble = preload("res://lens.tscn").instance()
|
|
add_child(bubble)
|