tutorial:terms
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
tutorial:terms [2020/02/23 22:32] – [Entry Points and Initializers] Mod initializers are not technically required earthcomputer | tutorial:terms [2024/08/25 12:10] (current) – solidblock | ||
---|---|---|---|
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 modid 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 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 modid naming. Knowing these early will help you to understand tutorials better and enable you to ask better questions when needed. | ||
- | ==== Mod ID ==== | + | ===== Mod ID ===== |
- | Throughout the documentation, | + | Throughout the documentation, |
- | A mod ID is often a compact version of the name of the mod which makes it short but recognizeable | + | A mod ID is often a compact version of the name of the mod which makes it short but recognizable |
- | 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. | + | 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. In Fabric Wiki, we use '' |
- | ==== Tags ==== | + | ===== Tags ===== |
- | **This section is a draft. Edit it.** | + | |
- | Convention namespace for tags is '' | + | **Tags** are groups of blocks, items, fluids, entities and so on. For example, the block tag '' |
- | read more on the [[https:// | + | Minecraft uses tags to determine many things. For example, blocks with tag '' |
- | ==== Entry Points | + | ===== Entrypoints |
- | Fabric Loader | + | Fabric Loader |
- | A mod usually contains at least one initializer class which should implement one of '' | + | In order to change or add initializers, |
<code java> | <code java> | ||
Line 38: | Line 36: | ||
</ | </ | ||
- | By implementing | + | By implementing |
- | Also, there is a block called '' | + | For more information on entry points, see [[documentation: |
- | ==== Maven Group & Package Names ==== | + | ===== Maven Group & Package Names ===== |
According to Oracle' | According to Oracle' |
tutorial/terms.1582497140.txt.gz · Last modified: 2020/02/23 22:32 by earthcomputer