Skip to content

Commit f483a43

Browse files
committed
docs: reorganize glossary with proper header hierarchy
1 parent 4db9d0d commit f483a43

1 file changed

Lines changed: 36 additions & 9 deletions

File tree

src/content/docs/overview/glossary.md

Lines changed: 36 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,32 @@ Every page on this site, organized by section. Use this as a quick reference to
1515

1616
The game logic layer. Blocks, items, entities, world generation, networking, and everything that runs the actual game.
1717

18+
### Core Systems
19+
1820
- [Overview](/lce-docs/world/overview/) - High-level look at the World module
1921
- [Blocks (Tiles)](/lce-docs/world/blocks/) - Every block type and the Tile class system
2022
- [Entities](/lce-docs/world/entities/) - All entity types and the Entity class hierarchy
2123
- [Tile Entities](/lce-docs/world/tile-entities/) - Block entities like chests, furnaces, signs
24+
25+
### World
26+
2227
- [World Generation](/lce-docs/world/worldgen/) - How worlds get generated
2328
- [Biomes](/lce-docs/world/biomes/) - All biome types and the biome system
2429
- [Structures](/lce-docs/world/structures/) - Generated structures like villages and strongholds
30+
31+
### Gameplay
32+
2533
- [AI & Goals](/lce-docs/world/ai-goals/) - The Goal-based AI system for mobs
2634
- [Enchantments](/lce-docs/world/enchantments/) - All enchantment types and the enchantment system
2735
- [Effects (Potions)](/lce-docs/world/effects/) - Potion effects and the MobEffect system
2836
- [Crafting & Recipes](/lce-docs/world/crafting/) - Recipe types and the crafting system
2937
- [Container Menus](/lce-docs/world/containers/) - Inventory and container menu system
38+
- [Game Rules](/lce-docs/world/gamerules/) - All game rules and the GameRules system
39+
40+
### Infrastructure
41+
3042
- [Networking & Packets](/lce-docs/world/networking/) - Packet types and multiplayer networking
3143
- [Level Storage & IO](/lce-docs/world/storage/) - Save/load and level storage
32-
- [Game Rules](/lce-docs/world/gamerules/) - All game rules and the GameRules system
3344

3445
### Items
3546

@@ -47,15 +58,23 @@ The game logic layer. Blocks, items, entities, world generation, networking, and
4758

4859
The rendering and UI layer. Everything the player sees and interacts with.
4960

61+
### Rendering
62+
5063
- [Overview](/lce-docs/client/overview/) - High-level look at the Client module
5164
- [Rendering Pipeline](/lce-docs/client/rendering/) - How frames get drawn
5265
- [Models](/lce-docs/client/models/) - Entity and block models
5366
- [Particles](/lce-docs/client/particles/) - The particle system
67+
68+
### UI & Input
69+
5470
- [Screens & GUI](/lce-docs/client/screens/) - The SWF/Iggy UI system and all screen types
5571
- [Input System](/lce-docs/client/input/) - Keyboard, mouse, and controller input
72+
- [Settings](/lce-docs/client/settings/) - Game settings and options
73+
74+
### Resources
75+
5676
- [Textures & Resources](/lce-docs/client/textures/) - Texture loading, atlases, and resource management
5777
- [Audio](/lce-docs/client/audio/) - Miles Sound System and audio playback
58-
- [Settings](/lce-docs/client/settings/) - Game settings and options
5978

6079
## Platform Code
6180

@@ -143,19 +162,27 @@ Complete starter mods you can follow end-to-end. Each one teaches multiple syste
143162

144163
Documentation for smartcmd's MinecraftConsoles fork, which builds on the LCE codebase with more content.
145164

165+
### Core Changes
166+
146167
- [Overview & Differences](/lce-docs/mc/overview/) - What MinecraftConsoles adds and changes
147168
- [Attribute System](/lce-docs/mc/attributes/) - Entity attribute system
148-
- [Scoreboard & Teams](/lce-docs/mc/scoreboard/) - Scoreboard and team system
169+
- [Behavior System](/lce-docs/mc/behaviors/) - Entity behavior system
170+
- [Build System & CI](/lce-docs/mc/build/) - Build system and CI setup
171+
- [Commands](/lce-docs/mc/commands/) - Command system changes
172+
173+
### New Content
174+
175+
- [New Blocks & Items](/lce-docs/mc/new-content/) - Blocks and items added by MinecraftConsoles
176+
- [New Entities & Models](/lce-docs/mc/new-entities/) - Entities and models added
149177
- [Horse Entities](/lce-docs/mc/horses/) - Horse entity implementation
178+
- [Fireworks](/lce-docs/mc/fireworks/) - Firework rockets and stars
179+
180+
### Systems
181+
182+
- [Scoreboard & Teams](/lce-docs/mc/scoreboard/) - Scoreboard and team system
150183
- [Redstone Mechanics](/lce-docs/mc/redstone/) - Redstone system changes
151184
- [Hoppers & Droppers](/lce-docs/mc/hoppers-droppers/) - Hopper and dropper mechanics
152185
- [Minecart Variants](/lce-docs/mc/minecarts/) - Minecart types
153-
- [Fireworks](/lce-docs/mc/fireworks/) - Firework rockets and stars
154-
- [Behavior System](/lce-docs/mc/behaviors/) - Entity behavior system
155-
- [New Blocks & Items](/lce-docs/mc/new-content/) - Blocks and items added by MinecraftConsoles
156-
- [New Entities & Models](/lce-docs/mc/new-entities/) - Entities and models added
157-
- [Commands](/lce-docs/mc/commands/) - Command system changes
158-
- [Build System & CI](/lce-docs/mc/build/) - Build system and CI setup
159186

160187
## Reference
161188

0 commit comments

Comments
 (0)