-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathmkdocs.yml
155 lines (155 loc) · 5.04 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
site_name: Ultimate Starter Kit
site_url: https://hfjooste.github.io/UltimateStarterKit
repo_url: https://github.com/hfjooste/UltimateStarterKit
repo_name: hfjooste/UltimateStarterKit
remote_branch: docs
remote_name: [email protected]:hfjooste/UltimateStarterKit.git
extra_css: [styles.css]
plugins:
- with-pdf:
author: Henry Jooste
cover: true
cover_title: Ultimate Starter Kit
cover_subtitle: Documentation
extra:
social:
- name: Sponsor Development
icon: fontawesome/solid/heart
link: https://github.com/sponsors/hfjooste
- name: Linktree
icon: fontawesome/solid/link
link: https://linktr.ee/hfjooste
- name: Threads
icon: fontawesome/brands/threads
link: https://www.threads.net/@hfjooste
- name: Mastodon
icon: fontawesome/brands/mastodon
link: https://mastodon.gamedev.place/@hfjooste
- name: Twitter
icon: fontawesome/brands/x-twitter
link: https://twitter.com/hfjooste
- name: GitHub
icon: fontawesome/brands/github
link: https://github.com/hfjooste
- name: Email
icon: fontawesome/solid/envelope
link: mailto:[email protected]
theme:
name: material
icon:
repo: fontawesome/brands/github
features:
- navigation.top
palette:
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: purple
accent: blue
toggle:
icon: material/brightness-4
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: purple
accent: blue
toggle:
icon: material/brightness-7
name: Switch to dark mode
nav:
- Getting Started: index.md
- Special Thanks: specialthanks.md
- Console Codenames: platform_copyright.md
- Core Functionality:
- Input Devices: inputdevice.md
- Game Instance: gameinstance.md
- Logging System:
- Logger: logger.md
- Log Configuration: logconfig.md
- Dialogue System:
- Overview: dialogueoverview.md
- Dialogue: dialogue.md
- Participant: dialogueparticipant.md
- Entry: dialogueentry.md
- Transition:
- Transition Type: dialoguetransitiontype.md
- Transition Data: dialoguetransition.md
- Manager: dialoguemanager.md
- Widget: dialoguewidget.md
- Inventory:
- Inventory Component: inventorycomponent.md
- Inventory Data: inventorydata.md
- Inventory Item: inventoryitem.md
- Inventory Item Data: inventoryitemdata.md
- Inventory Menu Item: inventorymenuitem.md
- Inventory Size: inventorysize.md
- Inventory Widget: inventorywidget.md
- Trackable Data:
- Overview: trackabledataoverview.md
- Data: trackabledata.md
- Component: trackabledatacomponent.md
- Audio:
- Audio Overview: audio.md
- Audio Utils: audioutils.md
- Music Player: music.md
- Characters:
- Overview: platformer.md
- Base Character: uskcharacter.md
- FPS Character: fpscharacter.md
- 3D Platformer Character: platformercharacter.md
- Animation Instance: characteranimationinstance.md
- Shadow Decal: platformershadow.md
- Weapons:
- Weapon: weapon.md
- Weapon Type: weapontype.md
- Weapon Fire Mode: weaponfiremode.md
- Weapon Item: weaponitem.md
- Weapon Ammo Item: weaponammoitem.md
- Weapon Projectile: weaponprojectile.md
- Weapon Projectile Data: weaponprojectiledata.md
- Weapon Projectile Hit Data: weaponprojectilehitdata.md
- Weapon Projectile Decal: weaponprojectiledecal.md
- Weapon Utils: weaponutils.md
- Dynamic Crosshair:
- Config: crosshairconfig.md
- Widget: dynamiccrosshair.md
- Items:
- Allowed Collector: allowedcollector.md
- Collectable Item: collectableitem.md
- Attract Component: attractcomponent.md
- Interact System:
- Interact Trigger: interacttrigger.md
- Interact Widget: interactwidget.md
- Quest System:
- Quest: quest.md
- Quest Component: questcomponent.md
- Quest Manager: questmanager.md
- Quest Widget: questwidget.md
- UI & Widgets:
- Collectable Item Icon: collectableitemicon.md
- Credits:
- Credits Entry: creditsentry.md
- Credits Widget: creditswidget.md
- FPS Counter: fpscounter.md
- Input Indicator: inputindicator.md
- Input Indicator Icon: inputindicatoricon.md
- Menu: menu.md
- Menu Item:
- Navigation: menunavigation.md
- Value Update Method: menuitemvalueupdatemethod.md
- Menu Item Widget: menuitem.md
- Message Popups:
- Message Popup Data: messagepopupdata.md
- Message Popup Widget: messagepopupwidget.md
- Settings:
- Data: settingsdata.md
- Config: settingsconfig.md
- Items:
- Types: settingsitemtype.md
- Logic: settingsitem.md
- Utils: settingsutils.md
- Utils:
- Config Utils: configutils.md
- Platform:
- Platform Type: platformtype.md
- Platform Utils: platformutils.md
- Project Utils: projectutils.md