summaryrefslogtreecommitdiff
path: root/demos/2d/texscreen/bubbles.gd
blob: 2ee227a928c831612716748fca524510c5ee150d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

extends Control

# member variables here, example:
# var a=2
# var b="textvar"

const MAX_BUBBLES=10

func _ready():
	# Initialization here
	for i in range(MAX_BUBBLES):
		var bubble = preload("res://lens.scn").instance()
		add_child(bubble)
	pass