unsuccessful experimentation

This commit is contained in:
Asuro
2025-02-18 00:03:09 +01:00
parent fb5851020f
commit 2c32a261c1
12 changed files with 111 additions and 34 deletions

View File

@@ -68,12 +68,6 @@ namespace Game
void Level::Update()
{
PlayerData& player = GetInstance().Player;
if (GetKeyPressedNow(ScanCode::R))
{
Cubes.Count = 0;
Tests.Count = 0;
Setup(GetShared().Game);
}
float delta = GetInstance().Time.Delta;
constexpr float moveSpeed = 10.0f;
@@ -126,8 +120,8 @@ namespace Game
EData.Transform.Position = {0.0f, -1.0f, 0.0f};
EData.Transform.Scale = {100.0f, 1.0f, 100.0f};
EData.TestColor[0] = 0.3f;
EData.TestColor[1] = 0.4f;
EData.TestColor[2] = 0.8f;
EData.TestColor[1] = 0.325f;
EData.TestColor[2] = 0.3f;
}
}