This repository was archived by the owner on May 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.js
More file actions
105 lines (104 loc) · 3.02 KB
/
sidebars.js
File metadata and controls
105 lines (104 loc) · 3.02 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
102
103
104
105
module.exports = {
main: [
{
type: 'doc',
id: 'documentation',
},
{
type: 'category',
label: 'jMonkeyEngine',
items: [
'bsd_license',
'githubtips',
{
type: 'category',
label: 'jME3',
items: [
{
type: 'doc',
id: 'jme3',
},
{
type: 'category',
label: 'Beginner Tutorials',
items: [
'jme3/beginner/hello_simpleapplication',
'jme3/beginner/hello_node',
'jme3/beginner/hello_asset',
'jme3/beginner/hello_main_event_loop',
'jme3/beginner/hello_input_system',
'jme3/beginner/hello_material',
'jme3/beginner/hello_animation',
'jme3/beginner/hello_picking',
'jme3/beginner/hello_collision',
'jme3/beginner/hello_terrain',
'jme3/beginner/hello_audio',
'jme3/beginner/hello_effects',
'jme3/beginner/hello_physics',
],
},
{
type: 'category',
label: 'Intermediate Tutorials',
items: [
{
type: 'category',
label: 'Concepts',
items: [
'jme3/intermediate/best_practices',
'jme3/intermediate/simpleapplication',
'jme3/intermediate/appsettings',
'jme3/features',
'jme3/intermediate/optimization',
'jme3/faq',
]
},
{
type: 'category',
label: 'Maths Concepts',
items: [
'jme3/math_for_dummies',
'jme3/intermediate/math',
'jme3/math',
'jme3/rotate',
'jme3/math_video_tutorials',
]
},
{
type: 'category',
label: '3D Graphics Concepts',
items: [
'jme3/intermediate/multi-media_asset_pipeline',
'jme3/scenegraph_for_dummies',
'jme3/beginner/hellovector',
'jme3/terminology',
'jme3/intermediate/how_to_use_materials',
'jme3/intermediate/transparency_sorting',
'jme3/external/blender',
'jme3/external/3dsmax',
]
}
]
},
{
type: 'category',
label: 'Advanced Tutorials',
items: [
],
},
],
},
'logo',
'multiplayer_template',
'report_bugs',
'sdk',
'spidermonkey',
'tasks',
'team',
]
},
{
Wiki: ['docusaurus/styleguide',],
}
],
};