forked from MinecraftForge/Documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
101 lines (96 loc) · 3.13 KB
/
mkdocs.yml
File metadata and controls
101 lines (96 loc) · 3.13 KB
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
# If you add a page, you must add it to the index here
nav:
- Home: 'index.md'
- Style Guide: 'styleguide.md'
- Getting Started:
- Home: 'gettingstarted/index.md'
- Structuring Your Mod: 'gettingstarted/structuring.md'
- Forge Update Checker: 'gettingstarted/autoupdate.md'
- Debug Profiler: 'gettingstarted/debugprofiler.md'
- Concepts:
- Sides: 'concepts/sides.md'
- Resources: 'concepts/resources.md'
- Data: 'concepts/data.md'
- Registries: 'concepts/registries.md'
- Mod Lifecycle: 'concepts/lifecycle.md'
- Internationalization and Localization: 'concepts/internationalization.md'
- Blocks:
- Home: 'blocks/blocks.md'
- BlockStates: 'blocks/states.md'
- Interaction: 'blocks/interaction.md'
# - Animation API:
# - Intro to the Animation API: 'animation/intro.md'
# - Armatures: 'animation/armature.md'
# - Animation State Machines: 'animation/asm.md'
# - Using the API: 'animation/implementing.md'
- Block Entities:
- Home: 'blockentities/blockentity.md'
- Renderer: 'blockentities/ber.md'
- Items:
- Home: 'items/items.md'
- Loot Modification: 'items/globallootmodifiers.md'
- Models:
- Intro to Models: 'models/introduction.md'
- Model Files: 'models/files.md'
- BlockStates:
- Intro to BlockState JSON: 'models/blockstates/introduction.md'
- Coloring Textures: 'models/color.md'
- Item Properties: 'models/itemproperties.md'
- Advanced Models:
- BakedModel: 'models/advanced/bakedmodel.md'
- Perspective: 'models/advanced/perspective.md'
- Item Overrides: 'models/advanced/itemoverrides.md'
- Rendering:
- BlockEntityWithoutLevelRenderer: 'rendering/bewlr.md'
- Data Generation:
- Introduction: 'datagen/intro.md'
- Model Providers: 'datagen/modelproviders.md'
- Events:
- Basic Usage: 'events/intro.md'
- Networking:
- Home: 'networking/index.md'
- Overview: 'networking/overview.md'
- SimpleImpl: 'networking/simpleimpl.md'
- Entities: 'networking/entities.md'
- Data Storage:
- Capabilities: 'datastorage/capabilities.md'
- Saved Data: 'datastorage/saveddata.md'
- Utilities:
- Recipes: 'utilities/recipes.md'
- Tags: 'utilities/tags.md'
- Effects:
- Particles: 'effects/particles.md'
- Sounds: 'effects/sounds.md'
- Conventions:
- Versioning: 'conventions/versioning.md'
- Locations: 'conventions/locations.md'
- Advanced Topics:
- Access Transformers: 'advanced/accesstransformers.md'
- Contributing to Forge:
- Getting Started: 'forgedev/index.md'
- PR Guidelines: 'forgedev/prguidelines.md'
- Legacy Versions:
- Home: 'legacy/index.md'
- Porting to 1.17: 'legacy/porting.md'
# Do not edit in PRs below here
site_name: Forge Documentation
site_url: https://mcforge.readthedocs.io/en/1.17.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_version: 1.18.x
versions:
1.16.x: 1.16.x
1.18.x: 1.18.x
extra_css:
- css/version_warning_fix.css