change 4x speed to 10x speed for testing

This commit is contained in:
2026-06-06 12:01:41 +02:00
parent ef17b0ce42
commit 66cf9ae23a
3 changed files with 5 additions and 5 deletions

View File

@@ -481,7 +481,7 @@ std::optional<QVector2D> GameWorldView::entityPosition(entt::entity entity) cons
void GameWorldView::stepSpeed(int delta)
{
const double kSpeeds[] = { 0.0, 0.5, 1.0, 2.0, 4.0 };
const double kSpeeds[] = { 0.0, 0.5, 1.0, 2.0, 10.0 };
const int kCount = 5;
int current = 2;
for (int i = 0; i < kCount; ++i)