2025-03-04 01:40:24 +00:00
|
|
|
class_name Bullet extends Area2D
|
2025-03-11 01:05:25 +00:00
|
|
|
@onready var bulletGraphic: Sprite2D = $Sprite2D
|
2025-03-04 01:40:24 +00:00
|
|
|
|
|
|
|
var speed = 750
|
|
|
|
|
|
|
|
signal hit(bullet, body)
|
|
|
|
|
|
|
|
func setSpeed(value):
|
|
|
|
speed = value
|
2025-03-11 01:05:25 +00:00
|
|
|
if speed <0:
|
|
|
|
bulletGraphic.flip_h = true
|
|
|
|
if speed >0:
|
|
|
|
bulletGraphic.flip_h = false
|
2025-03-04 01:40:24 +00:00
|
|
|
|
|
|
|
#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")
|
2025-03-11 01:05:25 +00:00
|
|
|
if not body is Player:
|
|
|
|
hit.emit(self, body)
|