basic forge setup and refactored for some warning
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 30s
Create tag and build when new code gets to main / Export (push) Successful in 5m10s

This commit is contained in:
2026-02-24 10:27:57 +01:00
parent 4f64139d61
commit 5da2aa31ab
14 changed files with 284 additions and 228 deletions

View File

@@ -15,8 +15,8 @@ public class PlayerControllerUnitTest
public void SetupTest()
{
_player = new PlayerController();
_player._targetSpeed = 7.0f;
_player._gravity = 9.8f;
_player.TargetSpeed = 7.0f;
_player.Gravity = 9.8f;
var rHealth = new RHealth(100.0f);
_player.RHealth = rHealth;
@@ -113,9 +113,9 @@ public class PlayerControllerUnitTest
[TestCase]
public void TestDashCooldownTimeout()
{
_player._canDash = false;
_player.CanDash = false;
_player.DashCooldownTimeout();
AssertBool(_player._canDash).IsTrue();
AssertBool(_player.CanDash).IsTrue();
}
[TestCase]