summaryrefslogtreecommitdiffstats
path: root/assets/weapons/goo_gun/Bullet.gd
diff options
context:
space:
mode:
Diffstat (limited to 'assets/weapons/goo_gun/Bullet.gd')
-rw-r--r--assets/weapons/goo_gun/Bullet.gd10
1 files changed, 0 insertions, 10 deletions
diff --git a/assets/weapons/goo_gun/Bullet.gd b/assets/weapons/goo_gun/Bullet.gd
deleted file mode 100644
index 5c5097f..0000000
--- a/assets/weapons/goo_gun/Bullet.gd
+++ /dev/null
@@ -1,10 +0,0 @@
-extends RigidBody
-
-export var material : Material = null
-
-func _ready():
- if material != null:
- $MeshInstance.set("material/0", material)
-
-func _on_Bullet_body_entered(_body):
- queue_free()