diff --git a/Game.cpp b/Game.cpp index 0c01a7c..b9b241f 100644 --- a/Game.cpp +++ b/Game.cpp @@ -180,6 +180,7 @@ void Game::Draw(float deltaTime, float totalTime) { // Background color (Cornflower Blue in this case) for clearing static const float color[4] = { 0.4f, 0.6f, 0.75f, 0.0f }; + static const DirectX::XMFLOAT3 ambient = XMFLOAT3(0.1f, 0.1f, 0.25f); // Clear the render target and depth buffer (erases what's on the screen) // - Do this ONCE PER FRAME @@ -202,6 +203,7 @@ void Game::Draw(float deltaTime, float totalTime) std::shared_ptr ps = entity->GetMaterial()->GetPixelShader(); ps->SetFloat3("cameraPosition", camera->GetTransform()->GetPosition()); ps->SetFloat("roughness", entity->GetMaterial()->GetRoughness()); + ps->SetFloat3("ambient", ambient); ps->CopyAllBufferData(); entity->GetMaterial()->GetVertexShader()->SetShader(); diff --git a/SimplePixelShader.hlsl b/SimplePixelShader.hlsl index 3829b3c..88bca2f 100644 --- a/SimplePixelShader.hlsl +++ b/SimplePixelShader.hlsl @@ -4,9 +4,10 @@ cbuffer ExternalData : register(b0) { float3 cameraPosition; float roughness; + float3 ambient; } float4 main() : SV_TARGET { - return float4(roughness.rrr, 1); + return float4(ambient.rgb, 1); }