tutorial:terms
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| tutorial:terms [2019/06/17 21:02] – [Mod ID] jamieswhiteshirt | tutorial:terms [2026/09/03 16:59] (current) – Make phrasing more internally consistent mcgambingpro | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ====== | + | ====== |
| + | Before starting with Fabric modding, it's important to understand some of the key terms and phrases used in future tutorial pages. It's also good to know basic conventions for things such as package structure and Mod ID naming. Knowing these early will help you to understand tutorials better and enable you to ask better questions when needed. | ||
| - | Before starting with Fabric modding, it's important | + | ===== Mod ID ===== |
| + | Throughout the documentation, we'll often refer to a **Mod ID**, or **modid** in code. Mod ID stands for "Mod Identifier," | ||
| - | ==== Mod ID ==== | + | A mod ID is often a compact version |
| - | Throughout the documentation, | + | |
| - | A mod ID is often a compact version | + | Some of the starter tutorials will use a placeholder |
| - | Some of the starter tutorials will use a placeholder mod ID and register items and blocks under a placeholder namespace, and you can think of it as a starter template-- while leaving this unchanged is not dangerous for testing, remember to change it if you intend to release your project. | + | ===== Tags ===== |
| - | ==== Tags ==== | + | **Tags** are groups of blocks, items, fluids, entities and so on. For example, the block tag '' |
| - | Draft. Edit it. | + | |
| - | Convention namespace for tags is '' | + | Minecraft uses tags to determine many things. For example, blocks with tag '' |
| + | |||
| + | ===== Entrypoints and Initializers ===== | ||
| + | Fabric Loader uses '' | ||
| + | |||
| + | In order to change or add initializers, | ||
| + | |||
| + | <code java> | ||
| + | { | ||
| + | [...] | ||
| + | " | ||
| + | " | ||
| + | " | ||
| + | ], | ||
| + | " | ||
| + | " | ||
| + | ] | ||
| + | } | ||
| + | [...] | ||
| + | } | ||
| + | </ | ||
| + | |||
| + | By implementing '' | ||
| + | |||
| + | For more information on entry points, see [[documentation: | ||
| + | |||
| + | ===== Maven Group & Package Names ===== | ||
| + | According to Oracle' | ||
tutorial/terms.1560805345.txt.gz · Last modified: 2019/06/17 21:02 by jamieswhiteshirt