-
-
Notifications
You must be signed in to change notification settings - Fork 193
/
mkdocs.yml
131 lines (126 loc) · 4.71 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# If you add a page, you must add it to the index here
nav:
- Home: 'index.md'
- Contributing to the Docs: 'contributing.md'
- Getting Started:
- Introduction: 'gettingstarted/index.md'
- The Mod Files: 'gettingstarted/modfiles.md'
- Structuring Your Mod: 'gettingstarted/structuring.md'
- Versioning: 'gettingstarted/versioning.md'
- Core Concepts:
- Registries: 'concepts/registries.md'
- Sides: 'concepts/sides.md'
- Events: 'concepts/events.md'
- Mod Lifecycle: 'concepts/lifecycle.md'
- Resources: 'concepts/resources.md'
- Internationalization: 'concepts/internationalization.md'
- Blocks:
- Introduction: 'blocks/index.md'
- Block States: 'blocks/states.md'
- Items:
- Introduction: 'items/index.md'
- BlockEntityWithoutLevelRenderer: 'items/bewlr.md'
- Networking:
- Introduction: 'networking/index.md'
- SimpleImpl: 'networking/simpleimpl.md'
- Synchronizing Entities: 'networking/entities.md'
- Block Entities:
- Introduction: 'blockentities/index.md'
- BlockEntityRenderer: 'blockentities/ber.md'
- Game Effects:
- Particles: 'gameeffects/particles.md'
- Sounds: 'gameeffects/sounds.md'
- Data Storage:
- Capabilities: 'datastorage/capabilities.md'
- Saved Data: 'datastorage/saveddata.md'
- Codecs: 'datastorage/codecs.md'
- Graphical User Interfaces:
- Menus: 'gui/menus.md'
- Screens: 'gui/screens.md'
- Rendering:
- Model Extensions:
- Introduction: 'rendering/modelextensions/index.md'
- Root Transforms: 'rendering/modelextensions/transforms.md'
- Render Types: 'rendering/modelextensions/rendertypes.md'
- Part Visibility: 'rendering/modelextensions/visibility.md'
- Face Data: 'rendering/modelextensions/facedata.md'
- Model Loaders:
- Introduction: 'rendering/modelloaders/index.md'
- Baked Model: 'rendering/modelloaders/bakedmodel.md'
- Transform: 'rendering/modelloaders/transform.md'
- Item Overrides: 'rendering/modelloaders/itemoverrides.md'
- Resources:
- Client Assets:
- Introduction: 'resources/client/index.md'
- Models:
- Introduction: 'resources/client/models/index.md'
- Texture Tinting: 'resources/client/models/tinting.md'
- Item Properties: 'resources/client/models/itemproperties.md'
- Server Data:
- Introduction: 'resources/server/index.md'
- Recipes:
- Introduction: 'resources/server/recipes/index.md'
- Custom Recipes: 'resources/server/recipes/custom.md'
- Ingredients: 'resources/server/recipes/ingredients.md'
- Non-Datapack Recipes: 'resources/server/recipes/incode.md'
- Loot Tables: 'resources/server/loottables.md'
- Global Loot Modifiers: 'resources/server/glm.md'
- Tags: 'resources/server/tags.md'
- Advancements: 'resources/server/advancements.md'
- Conditionally-Loaded Data: 'resources/server/conditional.md'
- Tags List: 'resources/server/tagslist.md'
- Data Generation:
- Introduction: 'datagen/index.md'
- Client Assets:
- Model Providers: 'datagen/client/modelproviders.md'
- Language Providers: 'datagen/client/localization.md'
- Sound Providers: 'datagen/client/sounds.md'
- Server Data:
- Recipe Providers: 'datagen/server/recipes.md'
- Loot Table Providers: 'datagen/server/loottables.md'
- Tag Providers: 'datagen/server/tags.md'
- Advancement Providers: 'datagen/server/advancements.md'
- Global Loot Modifier Providers: 'datagen/server/glm.md'
- Datapack Registry Object Providers: 'datagen/server/datapackregistries.md'
- Miscellaneous Features:
- Configuration: 'misc/config.md'
- Key Mappings: 'misc/keymappings.md'
- Game Tests: 'misc/gametest.md'
- Forge Update Checker: 'misc/updatechecker.md'
- Debug Profiler: 'misc/debugprofiler.md'
- Advanced Topics:
- Access Transformers: 'advanced/accesstransformers.md'
- Contributing to Forge:
- Introduction: 'forgedev/index.md'
- Pull Request Guidelines: 'forgedev/prguidelines.md'
- Legacy Versions:
- Introduction: 'legacy/index.md'
- Porting to This Version: 'legacy/porting.md'
# Do not edit in PRs below here
site_name: Forge Documentation
site_url: https://docs.minecraftforge.net/en/1.21.x/
markdown_extensions:
- admonition
- smarty
- sane_lists
- pymdownx.superfences
- pymdownx.highlight:
use_pygments: false
- toc:
permalink: ' '
theme:
name: readthedocs
custom_dir: forge_theme
extra:
current_type: MinecraftForge
types:
MinecraftForge: latest
ForgeGradle: fg-6.x
current_version: 1.21.x
versions:
1.21.x: 1.21.x
1.20.x: 1.20.x
1.20.1: 1.20.1
1.19.x: 1.19.x
extra_css:
- css/version_warning_fix.css