Skip to content

Commit 1b0f666

Browse files
authored
sidebars (#398)
1 parent 2b83c2f commit 1b0f666

File tree

89 files changed

+19063
-1958
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+19063
-1958
lines changed

.vitepress/sidebars/develop.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,14 @@ export default [
88
items: [
99
{
1010
text: "Fabric API GitHub",
11-
processSidebarURLs: false,
12-
translatable: false,
1311
link: "https://github.com/FabricMC/fabric",
1412
},
1513
{
1614
text: "Yarn GitHub",
17-
processSidebarURLs: false,
18-
translatable: false,
1915
link: "https://github.com/FabricMC/yarn",
2016
},
2117
{
2218
text: "Loom GitHub",
23-
processSidebarURLs: false,
24-
translatable: false,
2519
link: "https://github.com/FabricMC/fabric-loom",
2620
},
2721
],
Lines changed: 260 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,260 @@
1+
{
2+
"/cs_cz/develop/": [
3+
{
4+
"text": "Návody pro vývojáře",
5+
"link": "/cs_cz/develop/",
6+
"collapsed": false,
7+
"items": [
8+
{
9+
"text": "Fabric API GitHub",
10+
"link": "https://github.com/FabricMC/fabric"
11+
},
12+
{
13+
"text": "Yarn GitHub",
14+
"link": "https://github.com/FabricMC/yarn"
15+
},
16+
{
17+
"text": "Loom GitHub",
18+
"link": "https://github.com/FabricMC/fabric-loom"
19+
}
20+
]
21+
},
22+
{
23+
"text": "Začínáme",
24+
"collapsed": false,
25+
"items": [
26+
{
27+
"text": "Úvod do Fabricu a modování",
28+
"link": "/cs_cz/develop/getting-started/introduction-to-fabric-and-modding"
29+
},
30+
{
31+
"text": "Nastavení vývojářského prostředí",
32+
"link": "/cs_cz/develop/getting-started/setting-up-a-development-environment"
33+
},
34+
{
35+
"text": "Vytvoření projektu",
36+
"link": "/cs_cz/develop/getting-started/creating-a-project"
37+
},
38+
{
39+
"text": "Struktura projektu",
40+
"link": "/cs_cz/develop/getting-started/project-structure"
41+
},
42+
{
43+
"text": "Spouštění hry",
44+
"link": "/cs_cz/develop/getting-started/launching-the-game"
45+
}
46+
]
47+
},
48+
{
49+
"text": "Předměty",
50+
"collapsed": true,
51+
"items": [
52+
{
53+
"text": "Vytvoření vašeho prvního předmětu",
54+
"link": "/cs_cz/develop/items/first-item"
55+
},
56+
{
57+
"text": "Předměty jídla",
58+
"link": "/cs_cz/develop/items/food"
59+
},
60+
{
61+
"text": "Vlastní nástroje",
62+
"link": "/cs_cz/develop/items/custom-tools"
63+
},
64+
{
65+
"text": "Vlastní brnění",
66+
"link": "/cs_cz/develop/items/custom-armor"
67+
},
68+
{
69+
"text": "Vlastní skupiny předmětů",
70+
"link": "/cs_cz/develop/items/custom-item-groups"
71+
},
72+
{
73+
"text": "Vlastní interakce předmětů",
74+
"link": "/cs_cz/develop/items/custom-item-interactions"
75+
},
76+
{
77+
"text": "Lektvary",
78+
"link": "/cs_cz/develop/items/potions"
79+
}
80+
]
81+
},
82+
{
83+
"text": "Bloky",
84+
"collapsed": true,
85+
"items": [
86+
{
87+
"text": "Vytvoření vašeho prvního bloku",
88+
"link": "/cs_cz/develop/blocks/first-block"
89+
},
90+
{
91+
"text": "Stavy bloků",
92+
"link": "/cs_cz/develop/blocks/blockstates"
93+
}
94+
]
95+
},
96+
{
97+
"text": "Entity",
98+
"collapsed": true,
99+
"items": [
100+
{
101+
"text": "Stavové efekty",
102+
"link": "/cs_cz/develop/entities/effects"
103+
},
104+
{
105+
"text": "Typy poškození",
106+
"link": "/cs_cz/develop/entities/damage-types"
107+
}
108+
]
109+
},
110+
{
111+
"text": "Zvuky",
112+
"collapsed": true,
113+
"items": [
114+
{
115+
"text": "Přehrávání zvuků",
116+
"link": "/cs_cz/develop/sounds/using-sounds"
117+
},
118+
{
119+
"text": "Vytváření vlastních zvuků",
120+
"link": "/cs_cz/develop/sounds/custom"
121+
}
122+
]
123+
},
124+
{
125+
"text": "Příkazy",
126+
"collapsed": true,
127+
"items": [
128+
{
129+
"text": "Vytváření příkazů",
130+
"link": "/cs_cz/develop/commands/basics"
131+
},
132+
{
133+
"text": "Argumenty příkazů",
134+
"link": "/cs_cz/develop/commands/arguments"
135+
},
136+
{
137+
"text": "Návrhy příkazů",
138+
"link": "/cs_cz/develop/commands/suggestions"
139+
}
140+
]
141+
},
142+
{
143+
"text": "Renderování",
144+
"collapsed": true,
145+
"items": [
146+
{
147+
"text": "Základní příklady renderování",
148+
"link": "/cs_cz/develop/rendering/basic-concepts"
149+
},
150+
{
151+
"text": "Používání kontextu vykreslování",
152+
"link": "/cs_cz/develop/rendering/draw-context"
153+
},
154+
{
155+
"text": "Renderování v HUD",
156+
"link": "/cs_cz/develop/rendering/hud"
157+
},
158+
{
159+
"text": "GUI a obrazovky",
160+
"items": [
161+
{
162+
"text": "Vlastní obrazovky",
163+
"link": "/cs_cz/develop/rendering/gui/custom-screens"
164+
},
165+
{
166+
"text": "Vlastní widgety",
167+
"link": "/cs_cz/develop/rendering/gui/custom-widgets"
168+
}
169+
]
170+
},
171+
{
172+
"text": "Částice",
173+
"items": [
174+
{
175+
"text": "Vytváření vlastních částic",
176+
"link": "/cs_cz/develop/rendering/particles/creating-particles"
177+
}
178+
]
179+
}
180+
]
181+
},
182+
{
183+
"text": "Různé články",
184+
"collapsed": true,
185+
"items": [
186+
{
187+
"text": "Kodeky",
188+
"link": "/cs_cz/develop/codecs"
189+
},
190+
{
191+
"text": "Události",
192+
"link": "/cs_cz/develop/events"
193+
},
194+
{
195+
"text": "Text a překlad",
196+
"link": "/cs_cz/develop/text-and-translations"
197+
}
198+
]
199+
}
200+
],
201+
"/cs_cz/players/": [
202+
{
203+
"text": "Hráčské návody",
204+
"link": "/cs_cz/players/",
205+
"items": [
206+
{
207+
"text": "Často kladené dotazy",
208+
"link": "/cs_cz/players/faq"
209+
},
210+
{
211+
"text": "Instalace Javy",
212+
"collapsed": true,
213+
"items": [
214+
{
215+
"text": "Windows",
216+
"link": "/cs_cz/players/installing-java/windows"
217+
},
218+
{
219+
"text": "macOS",
220+
"link": "https://fabricmc.net/wiki/player:tutorials:java:mac"
221+
},
222+
{
223+
"text": "Linux",
224+
"link": "/cs_cz/players/installing-java/linux"
225+
}
226+
]
227+
},
228+
{
229+
"text": "Instalace Fabricu",
230+
"link": "/cs_cz/players/installing-fabric"
231+
},
232+
{
233+
"text": "Hledání důvěryhodných módů",
234+
"link": "/cs_cz/players/finding-mods"
235+
},
236+
{
237+
"text": "Instalace modů",
238+
"link": "/cs_cz/players/installing-mods"
239+
},
240+
{
241+
"text": "Řešení problémů",
242+
"items": [
243+
{
244+
"text": "Nahrávání logů",
245+
"link": "/cs_cz/players/troubleshooting/uploading-logs"
246+
},
247+
{
248+
"text": "Zprávy o pádech",
249+
"link": "/cs_cz/players/troubleshooting/crash-reports"
250+
}
251+
]
252+
},
253+
{
254+
"text": "Aktualizace Fabricu",
255+
"link": "/cs_cz/players/updating-fabric"
256+
}
257+
]
258+
}
259+
]
260+
}

0 commit comments

Comments
 (0)