-
Notifications
You must be signed in to change notification settings - Fork 71
/
mkdocs.yml
130 lines (124 loc) · 3.51 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
site_name: Tabletop Simulator API
theme:
custom_dir: 'theme'
favicon: 'img/Icon-Dice.png'
logo: 'img/TSIcon.png'
name: 'material'
palette:
primary: 'indigo'
accent: 'indigo'
extra_css:
- css/theme.css
- css/table.css
- css/type_icons.css
- css/i_icons.css
- css/player_color_table.css
markdown_extensions:
- admonition
- attr_list
- codehilite
- meta
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
options:
custom_icons:
- theme/icons
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.keys:
camel_case: true
strict: true
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- toc_ext:
mkdocs_search_sections: true
permalink: true
repo_name: 'GitHub Source'
repo_url: 'https://github.com/Berserk-Games/Tabletop-Simulator-API'
extra:
social:
- icon: fontawesome/brands/reddit
link: 'https://www.reddit.com/r/tabletopsimulator/'
- icon: fontawesome/brands/twitter
link: 'https://twitter.com/tabletopsim'
- icon: fontawesome/brands/facebook
link: 'https://www.facebook.com/tabletopsimulator'
- icon: fontawesome/brands/youtube
link: 'https://www.youtube.com/user/berserkgames'
nav:
- Getting Started:
- Introduction: index.md
- Overview: overview.md
- Atom: atom.md
- Lua in Tabletop Simulator: lua-in-tabletop-simulator.md
- System Console: systemconsole.md
- Virtual Reality: vr.md
- External Editor API: externaleditorapi.md
- Patch Notes: https://www.tabletopsimulator.com/news/patch-notes
- Scripting API:
- Introduction: intro.md
- Types: types.md
- Events: events.md
- Base: base.md
- Object: object.md
- Object Behaviors:
- AssetBundle: behavior/assetbundle.md
- Book: behavior/book.md
- Browser: behavior/browser.md
- Clock: behavior/clock.md
- Container: behavior/container.md
- Counter: behavior/counter.md
- LayoutZone: behavior/layoutzone.md
- RPGFigurine: behavior/rpgfigurine.md
- TextTool: behavior/texttool.md
- Object Components:
- Introduction: components/introduction.md
- GameObject: components/gameobject.md
- Component: components/component.md
- Material: components/material.md
- Examples: components/examples.md
- Backgrounds: backgrounds.md
- Color: color.md
- Grid: grid.md
- Hands: hands.md
- Info: info.md
- JSON: json.md
- Lighting: lighting.md
- Music Player: musicplayer.md
- Notes: notes.md
- Physics: physics.md
- Player:
- Colors: player/colors.md
- Instance: player/instance.md
- Manager: player/manager.md
- Spawnable Objects:
- Built-in: built-in-object.md
- Custom: custom-game-objects.md
- Tables: tables.md
- Time: time.md
- Timer: timer.md
- Turns: turns.md
- UI: ui.md
- Vector: vector.md
- Wait: wait.md
- Web Request:
- Instance: webrequest/instance.md
- Manager: webrequest/manager.md
- UI API:
- Introduction: ui/introUI.md
- Attributes: ui/attributes.md
- Basic Elements: ui/basicelements.md
- Input Elements: ui/inputelements.md
- Layout/Grouping: ui/layoutgrouping.md
- Defaults: ui/defaults.md