FebGame/febfabgame/Scripts/bullet.gd

24 lines
541 B
GDScript

class_name Bullet extends Area2D
@onready var bulletGraphic: Sprite2D = $Sprite2D
var speed = 750
signal hit(bullet, body)
func setSpeed(value):
speed = value
if speed <0:
bulletGraphic.flip_h = true
if speed >0:
bulletGraphic.flip_h = false
#animation
func _physics_process(delta: float) -> void:
position += transform.x * speed * delta
func _on_body_shape_entered(body_rid: RID, body: Node2D, body_shape_index: int, local_shape_index: int) -> void:
print("bullet collision")
if not body is Player:
hit.emit(self, body)