add: added point light shader and light object shader

This commit is contained in:
Lukian 2025-07-15 15:49:05 +02:00
parent d1b444bcef
commit 0337c70e26
3 changed files with 68 additions and 16 deletions

View file

@ -0,0 +1,9 @@
#version 330 core
out vec4 FragColor;
uniform vec3 lightColor;
void main()
{
FragColor = vec4(lightColor, 1.0f);
}