war and murder

This commit is contained in:
2023-09-02 11:25:49 -07:00
parent 3b8e6b34c9
commit 7f7595b06d
8 changed files with 130 additions and 18 deletions

11
Scripts/EnemyBullet.cs Normal file
View File

@@ -0,0 +1,11 @@
using Godot;
public partial class EnemyBullet : Projectile
{
public Vector3 Target;
public override void _PhysicsProcess(double delta)
{
Translate(new Vector3(0, 0, -Speed * (float)delta));
}
}