fixed spider body rotation

This commit is contained in:
derek
2024-07-19 14:35:50 -05:00
parent ae3437bb1b
commit 6112cec61d
7 changed files with 726 additions and 42 deletions

13
scripts/EnemyHivemind1.gd Normal file
View File

@@ -0,0 +1,13 @@
extends Node3D
var minions = []
# Called when the node enters the scene tree for the first time.
func _ready():
minions = self.get_children()
print(minions)
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
pass