Link CAN hit

This commit is contained in:
2023-09-02 01:41:34 -07:00
parent 955f9d307c
commit de037da23b
7 changed files with 123 additions and 27 deletions

10
Scripts/TestBullet.cs Normal file
View File

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