From bb87759291786cba9378334ed88218e3bb155dbd Mon Sep 17 00:00:00 2001 From: freddie-a <57713959+freddie-a@users.noreply.github.com> Date: Sun, 30 Oct 2022 09:24:11 +0000 Subject: Code cleanup and project refactoring --- Enemy.gd | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Enemy.gd (limited to 'Enemy.gd') diff --git a/Enemy.gd b/Enemy.gd new file mode 100644 index 0000000..46cb750 --- /dev/null +++ b/Enemy.gd @@ -0,0 +1,17 @@ +extends KinematicBody2D + + +# Declare member variables here. Examples: +# var a = 2 +# var b = "text" +# var player = get_node("") +onready var globals = get_node("/root/Global") + +# 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): + move_and_collide(global_position.direction_to(globals.playerPos).normalized() * 300 * delta) -- cgit v1.2.3-70-g09d2