Fix various spacing and capitalization issues

This commit is contained in:
Hugo Locurcio
2020-05-17 23:11:15 +02:00
parent a7fad2590d
commit 4f6fdbc710
17 changed files with 90 additions and 91 deletions

View File

@@ -72,7 +72,7 @@ Finally, all that's left is the fragment shader:
.. code-block:: glsl
void fragment() {
vec4 albedo_tex = texture(texture_albedo,UV);
vec4 albedo_tex = texture(texture_albedo, UV);
ALBEDO = albedo_tex.rgb;
ALPHA = albedo_tex.a;
METALLIC = 0.0;