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

extends Node2D

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

func _ready():
	#Initalization here
	pass




func _on_princess_body_enter( body ):
	#the name of this editor-generated callback is unfortunate
	get_node("youwin").show()