Basic bat maybe?

This commit is contained in:
Victor Turgeon
2023-10-10 13:30:23 -04:00
parent c4d8e753b0
commit 7d2d562969
5 changed files with 148 additions and 37 deletions

View File

@@ -0,0 +1,4 @@
extends AITemplate
func getDirection(position, enemyPosition) -> Vector2:
return Vector2.ZERO

View File

@@ -0,0 +1,5 @@
class_name AITemplate
extends Node
func run(position, enemyPosition) -> Vector2:
return Vector2.ZERO