Add trail to show where we've been

This commit is contained in:
2023-10-09 19:34:05 -04:00
parent c202e47d23
commit 601a6016ba
2 changed files with 26 additions and 0 deletions

11
trailfragshader.txt Normal file
View File

@@ -0,0 +1,11 @@
#version 460 core
out vec4 FragColor;
in vec3 FragPos;
uniform vec3 objectcolor;
void main()
{
FragColor = vec4(objectcolor, 1.0);
}