41 lines
1.1 KiB
GDScript3
41 lines
1.1 KiB
GDScript3
|
extends Area2D
|
||
|
|
||
|
const speed = 60
|
||
|
var direction = 1
|
||
|
@onready var right_cast = $RightCast
|
||
|
@onready var left_cast = $LeftCast
|
||
|
@onready var right_floor_cast = $rightFloorCast
|
||
|
@onready var left_floor_cast = $leftFloorCast
|
||
|
@onready var sprite = $AnimatedSprite2D
|
||
|
@onready var game = %GameController
|
||
|
|
||
|
# Called when the node enters the scene tree for the first time.
|
||
|
func _ready():
|
||
|
pass # Replace with function body.
|
||
|
|
||
|
|
||
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
||
|
func _process(delta):
|
||
|
if right_cast.is_colliding():
|
||
|
if not right_cast.get_collider().is_in_group("player"):
|
||
|
direction = -1
|
||
|
sprite.flip_h = true
|
||
|
if left_cast.is_colliding():
|
||
|
if not left_cast.get_collider().is_in_group("player"):
|
||
|
direction = 1
|
||
|
sprite.flip_h = false
|
||
|
if not right_floor_cast.is_colliding():
|
||
|
direction = -1
|
||
|
sprite.flip_h = true
|
||
|
if not left_floor_cast.is_colliding():
|
||
|
direction = 1
|
||
|
sprite.flip_h = false
|
||
|
position.x += direction * speed * delta
|
||
|
|
||
|
|
||
|
func _on_body_entered(body):
|
||
|
print("something hit the bad guy")
|
||
|
if body.is_in_group("player"):
|
||
|
game.playerDeath()
|
||
|
|