Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions Assets/Tests/PlayMode/GrayboxDemoProofTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,16 @@ public IEnumerator BootstrapMatch_RunsRendersAndStartsTheLoop()
Assert.Greater(tickBaseline, 0u, "Session tick did not advance");
Assert.AreEqual(3000L, bootstrap.ActiveConfig.StartingCredits,
"D-077 configures the canonical 3.000-AE opening");
Assert.That(creditsBaseline,
Is.InRange(EconomySystem.HqBaseCapacityAE, 2999L),
"D-106 deterministically decays the initial overhang while no completed Storage exists");
// There is no initial overhang any more, and that is the point of
// #131: the D-077 opening balance (3.000) used to sit ABOVE the HQ
// ceiling (2.000), so a third of it decayed away in the first
// fifteen seconds of every match while nothing on screen said why.
// Raising the ceiling to 3.000 made the two decisions agree, so the
// opening balance now simply STAYS. The old assertion read
// InRange(ceiling, 2999) and became InRange(3000, 2999) — an
// invalid range, which is how this test found the change.
Assert.AreEqual(EconomySystem.HqBaseCapacityAE, creditsBaseline,
"the opening balance fits under the HQ ceiling and must not decay (#131)");

Camera camera = Camera.main;
Assert.NotNull(camera, "no main camera in the Bootstrap scene");
Expand Down
2 changes: 1 addition & 1 deletion ProjectSettings/ProjectSettings.asset
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ PlayerSettings:
webEnableSubmoduleStrippingCompatibility: 0
scriptingDefineSymbols:
1: NOVA_FIXED_POINT
Standalone: APP_UI_EDITOR_ONLY;SENTIS_ANALYTICS_ENABLED
Standalone: APP_UI_EDITOR_ONLY
additionalCompilerArguments: {}
platformArchitecture: {}
scriptingBackend: {}
Expand Down
Loading