summaryrefslogtreecommitdiff
path: root/demos/2d/shower_of_bullets
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2014-11-12 11:23:23 -0300
committerJuan Linietsky <reduzio@gmail.com>2014-11-12 11:23:23 -0300
commit6dd8768811cfca5bb831619d93cf870e5d20667f (patch)
tree9e8837b7c8334855a1bce1bd79ab441edde28129 /demos/2d/shower_of_bullets
parentc8cd5222a7fa931f072e02b23c5b9d826d0ef548 (diff)
3D Import Import & UDP
-=-=-=-=-=-=-=-=-=-=- -Animation Import filter support -Animation Clip import support -Animation Optimizer Fixes, Improvements and Visibile Options -Extremely Experimental UDP support.
Diffstat (limited to 'demos/2d/shower_of_bullets')
-rw-r--r--demos/2d/shower_of_bullets/bullets.gd4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/2d/shower_of_bullets/bullets.gd b/demos/2d/shower_of_bullets/bullets.gd
index f76fcc38ba..79f4faaae6 100644
--- a/demos/2d/shower_of_bullets/bullets.gd
+++ b/demos/2d/shower_of_bullets/bullets.gd
@@ -65,9 +65,9 @@ func _ready():
func _exit_tree():
for b in bullets:
- Physics2DServer.free(b.body)
+ Physics2DServer.free_rid(b.body)
- Physics2DServer.free(shape)
+ Physics2DServer.free_rid(shape)
# Initalization here
bullets.clear()