the-crypt/magic/Projectiles/PhantomProjectile.gd

10 lines
120 B
GDScript3
Raw Normal View History

2020-07-20 01:18:45 -05:00
extends Projectile
var ignore = []
func _on_body_entered(body):
if body.get("health") != null:
body.health -= 1