Skip to content

Commit 265fe76

Browse files
committed
Update Antora xrefs to ensure consistent and accurate navigation across documentation.
1 parent c79aa25 commit 265fe76

9 files changed

Lines changed: 9 additions & 9 deletions

File tree

en/Building_a_Simple_Engine/Camera_Transformations/02_math_foundations.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1102,4 +1102,4 @@ If you're finding some of the mathematical concepts challenging or want to deepe
11021102

11031103
These resources should help you gain a deeper understanding of the mathematical concepts used in 3D graphics and camera systems. If you're struggling with a particular concept, try looking at multiple resources as different explanations might resonate better with your learning style.
11041104

1105-
xref:03_transformation_matrices.adoc[Next: Transformation Matrices]
1105+
xref:01_introduction.adoc[Previous: Introduction] | xref:03_transformation_matrices.adoc[Next: Transformation Matrices]

en/Building_a_Simple_Engine/Camera_Transformations/03_transformation_matrices.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,4 +173,4 @@ glm::mat4 childWorldModel = parentModel * localModel;
173173

174174
In the next section, we'll implement a camera system that uses these transformation concepts to navigate our 3D scenes.
175175

176-
xref:04_camera_implementation.adoc[Next: Camera Implementation]
176+
xref:02_math_foundations.adoc[Previous: Mathematical Foundations] | xref:04_camera_implementation.adoc[Next: Camera Implementation]

en/Building_a_Simple_Engine/Camera_Transformations/04_camera_implementation.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -691,4 +691,4 @@ For more advanced camera techniques, refer to the Advanced Camera Techniques sec
691691

692692
In the next section, we'll integrate our camera system with Vulkan to render 3D scenes.
693693

694-
xref:05_vulkan_integration.adoc[Next: Vulkan Integration]
694+
xref:03_transformation_matrices.adoc[Previous: Transformation Matrices] | xref:05_vulkan_integration.adoc[Next: Vulkan Integration]

en/Building_a_Simple_Engine/Camera_Transformations/05_vulkan_integration.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,4 +294,4 @@ With these components in place, we now have a fully functional camera system int
294294

295295
In the next section, we'll wrap up with a conclusion and discuss potential improvements to our camera system.
296296

297-
xref:06_conclusion.adoc[Next: Conclusion]
297+
xref:04_camera_implementation.adoc[Previous: Camera Implementation] | xref:06_conclusion.adoc[Next: Conclusion]

en/Building_a_Simple_Engine/Camera_Transformations/06_conclusion.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ A well-designed camera system is essential for any 3D application. It serves as
5252

5353
Remember that the code provided in this chapter is a starting point. Feel free to modify and extend it to suit your specific needs and application requirements.
5454

55-
xref:../Engine_Architecture/conclusion.adoc[Previous: Engine Architecture] | xref:../Lighting_Materials/01_introduction.adoc[Next: Lighting & Materials]
55+
xref:05_vulkan_integration.adoc[Previous: Vulkan Integration] | xref:../Lighting_Materials/01_introduction.adoc[Next: Lighting & Materials]

en/Building_a_Simple_Engine/Lighting_Materials/06_conclusion.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ Remember that lighting is a complex topic with many approaches and techniques. T
4141

4242
In the next chapter, we'll explore GUI implementation, which will allow us to create interactive user interfaces for our applications.
4343

44-
xref:07_shadows.adoc[Previous: Shadows] | xref:../GUI/01_introduction.adoc[Next: GUI - Introduction]
44+
xref:07_shadows.adoc[Previous: Shadows] | xref:../GUI/01_introduction.adoc[Next: GUI]

en/Building_a_Simple_Engine/Lighting_Materials/07_shadows.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,4 +203,4 @@ Shadows are a deep topic. Now that you understand how to implement basic and sof
203203

204204
In the next chapter, we'll look at how to add a Graphical User Interface (GUI) to control these lighting and shadow parameters in real-time.
205205

206-
xref:06_conclusion.adoc[Previous: Conclusion] | xref:../GUI/01_introduction.adoc[Next: GUI - Introduction]
206+
xref:05_vulkan_integration.adoc[Previous: Vulkan Integration] | xref:06_conclusion.adoc[Next: Conclusion]

en/Building_a_Simple_Engine/Loading_Models/02_project_setup.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,4 +373,4 @@ At runtime, our engine will:
373373

374374
By implementing these specific approaches, our engine will have a robust and efficient asset pipeline that aligns with the general concepts discussed earlier in this chapter.
375375

376-
xref:03_model_system.adoc[Next: Implementing the Model Loading System]
376+
xref:01_introduction.adoc[Previous: Introduction] | xref:03_model_system.adoc[Next: Implementing the Model Loading System]

en/Building_a_Simple_Engine/Subsystems/index.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ This chapter covers the implementation of critical engine subsystems - Audio and
1111
* xref:05_vulkan_physics.adoc[Vulkan for Physics Simulation]
1212
* xref:06_conclusion.adoc[Conclusion]
1313

14-
xref:../Loading_Models/09_conclusion.adoc[Previous: Loading Models Conclusion] | xref:../index.html[Back to Building a Simple Engine]
14+
xref:../Loading_Models/09_conclusion.adoc[Previous: Loading Models Conclusion] | xref:../index.adoc[Back to Building a Simple Engine]

0 commit comments

Comments
 (0)