Madness check-in

This commit is contained in:
2023-09-04 04:19:27 -07:00
parent bf60e2dd9e
commit 8523d6b64f
166 changed files with 11305 additions and 1737 deletions

View File

@@ -4,8 +4,8 @@ public partial class TestEnemy : RigidBody3D
{
[Export]
private float _speed;
[Export]
private PathFollow3D _pathFollow;
//[Export]
//private PathFollow3D _pathFollow;
public override void _Process(double delta)
{
@@ -16,7 +16,7 @@ public partial class TestEnemy : RigidBody3D
public override void _PhysicsProcess(double delta)
{
_pathFollow.Progress += _speed * (float)delta;
//_pathFollow.Progress += _speed * (float)delta;
}
public void OnHit(Node node)