JanuaryGodotGame/januaryproject/scripts/bullet.gd

39 lines
856 B
GDScript

class_name Bullet extends Area2D
@onready var bulletGraphic: Sprite2D = $Sprite2D
var speed = 700
signal hit
signal badguyHit(area)
# 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
if speed <0:
bulletGraphic.flip_h = true
else:
bulletGraphic.flip_h = false
func _on_body_entered(body: Node2D) -> void:
print("Bullet hit sumtin")
if not body.is_in_group("player"):
hit.emit(self, body)
func _on_area_entered(area: Area2D) -> void:
print("Bullet hitting area")
if area.is_in_group("enemies"):
badguyHit.emit(area)