diff options
author | reduz <juan@okamstudio.com> | 2015-10-10 09:09:09 -0300 |
---|---|---|
committer | reduz <juan@okamstudio.com> | 2015-10-10 09:09:09 -0300 |
commit | 422929e87fbe91be1efedf1fe3a9a71d61e58b40 (patch) | |
tree | a9a7d1862505f06b41b6f8c5fe96bd0012c93d29 /demos/2d/platformer | |
parent | afbb0ca8d7d978f27c62271273a1a6bc866a73ce (diff) |
Large improvements on scene packing and management
-Ability to edit and keep changes of instanced scenes and sub-scenes
-Ability to inherit from other scenes
Diffstat (limited to 'demos/2d/platformer')
-rw-r--r-- | demos/2d/platformer/coin.gd | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/demos/2d/platformer/coin.gd b/demos/2d/platformer/coin.gd index 3e31a395ae..983cd46d88 100644 --- a/demos/2d/platformer/coin.gd +++ b/demos/2d/platformer/coin.gd @@ -18,3 +18,11 @@ func _ready(): # Initalization here pass + + +func _on_coin_area_enter( area ): + pass # replace with function body + + +func _on_coin_area_enter_shape( area_id, area, area_shape, area_shape ): + pass # replace with function body |