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

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