tutorial:primer
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
tutorial:primer [2022/10/19 22:36] – created miir | tutorial:primer [2024/08/25 11:50] (current) – solidblock | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Minecraft Modding Primer | + | ~~REDIRECT> |
+ | |||
+ | ====== Minecraft Modding Primer ====== | ||
//Note: This primer assumes no prior experience modding Minecraft. However, you will need to have a firm grasp on programming in Java to work with Minecraft (see the Prerequisites section). If you are coming to Fabric from another modloader, like Forge, the [[introduction]] will probably be more at your level.// | //Note: This primer assumes no prior experience modding Minecraft. However, you will need to have a firm grasp on programming in Java to work with Minecraft (see the Prerequisites section). If you are coming to Fabric from another modloader, like Forge, the [[introduction]] will probably be more at your level.// | ||
- | ===== Prerequisites for Minecraft Modding ===== | ||
- | -You must understand the basics of coding. If you have never touched code before, you must learn how to code first. "The basics" | + | This document is meant to serve as an introduction to modding for anyone who doesn' |
- | -You should have some experience in a programming language like Java or C/C++/C#. Java's syntax is relatively simple to pick up for someone coming from the C family. | + | ===== Prerequisites |
- | + | ||
- | -Familiarity with Java's syntax for lambda methods, generics (you should know what these are), and syntactic sugar like the ternary operator will be very helpful-- but this is something that a quick learner can pick up along the way. | + | |
- | -You must know how to use the Internet to find answers to questions, and etiquette for asking for help on forums. | + | * You must understand the basics of coding. If you have never touched code before, you must learn how to code first. "The basics" |
+ | * You should have some experience in a programming language like Java or C/C++/C#. Java's syntax is relatively simple to pick up for someone coming from the C family. | ||
+ | * Familiarity with Java's syntax for lambda methods, generics (you should know what these are), and syntactic sugar like the ternary operator will be very helpful-- but this is something that a quick learner can pick up along the way. | ||
+ | * You must know how to use the Internet to find answers to questions, and etiquette for asking for help on forums. | ||
===== What is Modding? ===== | ===== What is Modding? ===== | ||
Line 27: | Line 29: | ||
* the **Fabric Installer**-- a tool that installs the Fabric Loader on an end user's Minecraft installation. | * the **Fabric Installer**-- a tool that installs the Fabric Loader on an end user's Minecraft installation. | ||
- | To more easily understand what is going on in Minecraft' | + | To more easily understand what is going on in Minecraft' |
* the **intermediary** mapper is a program that gives every single object in Minecraft' | * the **intermediary** mapper is a program that gives every single object in Minecraft' | ||
Line 38: | Line 40: | ||
Minecraft: Java Edition is a huge project, with years and years of code built on top of each other. It can seem chaotic (because it is), but there are a few key concepts that are (mostly) consistent across the board. | Minecraft: Java Edition is a huge project, with years and years of code built on top of each other. It can seem chaotic (because it is), but there are a few key concepts that are (mostly) consistent across the board. | ||
- | === Registries === | + | ==== Registries |
Most " | Most " | ||
- | === Sides === | + | ==== Sides ==== |
Minecraft' | Minecraft' |
tutorial/primer.1666218984.txt.gz · Last modified: 2022/10/19 22:36 by miir