2025-01-14 01:58:53 +00:00
|
|
|
class_name Bullet extends Area2D
|
2025-01-21 01:44:44 +00:00
|
|
|
@onready var bulletGraphic: Sprite2D = $Sprite2D
|
2025-01-14 01:58:53 +00:00
|
|
|
|
|
|
|
var speed = 700
|
|
|
|
signal hit
|
2025-02-11 02:13:02 +00:00
|
|
|
signal badguyHit(area)
|
2025-01-14 01:58:53 +00:00
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
|
|
func _ready() -> void:
|
|
|
|
pass # Replace with function body.
|
|
|
|
|
|
|
|
|
|
|
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
|
|
|
func _process(delta: float) -> void:
|
|
|
|
pass
|
|
|
|
|
|
|
|
func _physics_process(delta: float) -> void:
|
|
|
|
position += transform.x * speed * delta
|
|
|
|
func setSpeed(value):
|
|
|
|
speed = value
|
2025-01-21 01:44:44 +00:00
|
|
|
if speed <0:
|
|
|
|
bulletGraphic.flip_h = true
|
|
|
|
else:
|
|
|
|
bulletGraphic.flip_h = false
|
2025-01-14 01:58:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
func _on_body_entered(body: Node2D) -> void:
|
|
|
|
print("Bullet hits something")
|
|
|
|
if not body.is_in_group("player"):
|
2025-01-21 01:44:44 +00:00
|
|
|
hit.emit(self, body)
|
2025-02-11 02:13:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
func _on_area_entered(area: Area2D) -> void:
|
|
|
|
print("Bullet hitting area")
|
|
|
|
if area.is_in_group("enemies"):
|
|
|
|
badguyHit.emit(area)
|
|
|
|
|