2025-03-04 01:41:41 +00:00
|
|
|
class_name Bullet extends Area2D
|
2025-03-11 01:05:26 +00:00
|
|
|
@onready var bulletGraphic: Sprite2D = $Sprite2D
|
2025-03-04 01:41:41 +00:00
|
|
|
|
2025-03-11 01:05:26 +00:00
|
|
|
var speed = 500
|
2025-03-04 01:41:41 +00:00
|
|
|
|
|
|
|
signal hit(bullet, body)
|
|
|
|
|
|
|
|
func setSpeed(value):
|
|
|
|
speed = value
|
2025-03-11 01:05:26 +00:00
|
|
|
if speed <0:
|
|
|
|
bulletGraphic.flip_h = true
|
|
|
|
if speed>0:
|
|
|
|
bulletGraphic.flip_h = false
|
2025-03-04 01:41:41 +00:00
|
|
|
|
|
|
|
#animation
|
|
|
|
func _physics_process(delta: float) -> void:
|
|
|
|
position +=transform.x*speed*delta
|
|
|
|
|
|
|
|
|
|
|
|
func _on_body_entered(body: Node2D) -> void:
|
2025-03-11 01:05:26 +00:00
|
|
|
print ("bullet collision")
|
|
|
|
if not body is Player:
|
2025-03-04 01:41:41 +00:00
|
|
|
hit.emit(self, body)
|