godot/demos/2d/isometric_light/map.gd
Juan Linietsky 09489e3a78 lot of work on 2D lighting and isometric maps
added a new demo, isometric_light that does full isometric sorting,
lights, shadows, etc.
2015-03-09 02:34:56 -03:00

19 lines
265 B
GDScript

extends Node2D
# member variables here, example:
# var a=2
# var b="textvar"
func _ready():
# Initialization here
pass
func _on_prince_area_body_enter( body ):
if (body.get_name()=="cubio"):
get_node("message").show()
pass # replace with function body