diff options
Diffstat (limited to 'demos/2d/isometric_light/map.gd')
-rw-r--r-- | demos/2d/isometric_light/map.gd | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/demos/2d/isometric_light/map.gd b/demos/2d/isometric_light/map.gd new file mode 100644 index 0000000000..6b790ddf1c --- /dev/null +++ b/demos/2d/isometric_light/map.gd @@ -0,0 +1,7 @@ + +extends Node2D + + +func _on_prince_area_body_enter(body): + if (body.get_name() == "cubio"): + get_node("message").show() |