From a25a840b1c8262a18eb78df354abab94992a1b97 Mon Sep 17 00:00:00 2001 From: tttsaurus <72607439+tttsaurus@users.noreply.github.com> Date: Tue, 21 Jan 2025 05:15:46 -0500 Subject: [PATCH] Added a render docs page and a link to my repo (#31) --- docs/.vitepress/config/en.ts | 4 ++++ .../render/render-documentation.md | 18 ++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 docs/wiki/forge-mod-development/render/render-documentation.md diff --git a/docs/.vitepress/config/en.ts b/docs/.vitepress/config/en.ts index bb89dad..73e1714 100644 --- a/docs/.vitepress/config/en.ts +++ b/docs/.vitepress/config/en.ts @@ -108,6 +108,10 @@ function wikiSidebar(): DefaultTheme.SidebarItem[] { text: "Colouring Blocks and Items", link: "colouring-blocks-and-items", }, + { + text: "Render Documentation", + link: "render-documentation", + } ], }, { text: "Behaviour", link: "behaviour" }, diff --git a/docs/wiki/forge-mod-development/render/render-documentation.md b/docs/wiki/forge-mod-development/render/render-documentation.md new file mode 100644 index 0000000..2523da3 --- /dev/null +++ b/docs/wiki/forge-mod-development/render/render-documentation.md @@ -0,0 +1,18 @@ +--- +title: Render Documentation +--- + +# Rendering Documentation + +This document provides resources and information related to rendering. + +## Mc 122 Render Book + +- **[GitHub Repository: Mc122RenderBook](https://github.com/tttsaurus/Mc122RenderBook)** + - This repository is a comprehensive collection of rendering examples and experiments designed for Minecraft 1.12.2. + - It serves as a resource for beginners to understand rendering, particularly OpenGL, within the Minecraft environment. + +### Key Features + +- **Examples:** Primarily consists of examples, allowing you to easily copy and learn. +- **Experimentation:** A variety of experiments to explore rendering concepts.