From 3bd1534016ad9363d760ecb948d3bc04ee6e90eb Mon Sep 17 00:00:00 2001 From: "[redacted]" Date: Sat, 27 Feb 2021 20:49:24 -0800 Subject: [PATCH] Fix a broken link Existing link wasn't pointing to normals page. --- docs/beginner/tutorial9-models/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/beginner/tutorial9-models/README.md b/docs/beginner/tutorial9-models/README.md index e47fc7c2..118abf02 100644 --- a/docs/beginner/tutorial9-models/README.md +++ b/docs/beginner/tutorial9-models/README.md @@ -116,7 +116,7 @@ pub struct Mesh { } ``` -The `Material` is pretty simple, it's just the name and one texture. Our cube obj actually has 2 textures, but one is a normal map, and we'll get to those [later](../../intermediate/normal-mapping). The name is more for debugging purposes. +The `Material` is pretty simple, it's just the name and one texture. Our cube obj actually has 2 textures, but one is a normal map, and we'll get to those [later](../../intermediate/tutorial11-normals). The name is more for debugging purposes. Speaking of textures, we'll need to add a `load()` method to `Texture` in `texture.rs`.