This commit is contained in:
Isuru Samarathunga
2025-09-13 17:46:11 +05:30
parent 3687a70aba
commit 594180c5d3
10 changed files with 100 additions and 14 deletions

View File

@ -3,6 +3,7 @@
#include <Ground.hpp>
#include <IAEngine/ResourceManager.hpp>
#include <IAEngine/Rendering/Camera.hpp>
#include <IACore/File.hpp>
@ -36,6 +37,7 @@ namespace ia::iae::game
VOID Game::Update()
{
g_tex->Draw({}, {1.0f, 1.0f, 1.0f}, 0.0f, false, false, {1.0f, 1.0f, 1.0f, 1.0f});
g_tex->Draw({200.0f, 150.0f, 0.0f}, {1.0f, 1.0f, 1.0f}, 0.0f, false, false, {1.0f, 1.0f, 1.0f, 1.0f});
iae::Renderer::GetCamera()->Position().x += 0.1f;
}
}