opentk / LearnOpenTK

A port of learnopengl.com's tutorials to OpenTK and C#.
Creative Commons Attribution 4.0 International
459 stars 115 forks source link

Chapter 1 / 6 error in comments #41

Closed Shadowblitz16 closed 3 years ago

Shadowblitz16 commented 4 years ago

Chapter 1 / 6 says ..

            // shader.frag has been modified yet again, take a look at it as well.
            _shader = new Shader("Shaders/shader.vert", "Shaders/shader.frag");
            _shader.Use();

when it should say...

            // shader.vert has been modified, take a look at it as well.
            _shader = new Shader("Shaders/shader.vert", "Shaders/shader.frag");
            _shader.Use();
Paphos commented 3 years ago

This issue applies for 7-Transformations, not 6-MultipleTextures. I fixed it in a commit.