forked from Berserk-Games/Tabletop-Simulator-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
104 lines (98 loc) · 2.57 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
site_name: Tabletop Simulator API
theme:
name: 'material'
palette:
primary: 'indigo'
accent: 'indigo'
logo: 'img/TSIcon.png'
favicon: 'img/Icon-Dice.png'
custom_dir: 'theme'
extra_css:
- css/theme.css
- css/table.css
- css/type_icons.css
- css/i_icons.css
- css/player_color_table.css
markdown_extensions:
- admonition
- codehilite
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- toc:
permalink: "\u0020"
repo_name: 'GitHub Source'
repo_url: 'https://github.com/Berserk-Games/Tabletop-Simulator-API'
extra:
social:
- type: 'reddit'
link: 'https://www.reddit.com/r/tabletopsimulator/'
- type: 'twitter'
link: 'https://twitter.com/tabletopsim'
- type: 'facebook'
link: 'https://www.facebook.com/tabletopsimulator'
- type: 'youtube'
link: 'https://www.youtube.com/user/berserkgames'
nav:
- Getting Started:
- Introduction: index.md
- Overview: overview.md
- Atom: atom.md
- External Editor API: externaleditorapi.md
- Learning Lua: learninglua.md
- System Console: systemconsole.md
- Virtual Reality: vr.md
- Patch Notes: https://www.tabletopsimulator.com/news/patch-notes
- Scripting API:
- Introduction: intro.md
- Types: types.md
- Event: event.md
- Base: base.md
- Object: object.md
- AssetBundle: assetbundle.md
- Book: book.md
- Browser: browser.md
- Clock: clock.md
- Color: color.md
- Component: component.md
- Counter: counter.md
- Grid: grid.md
- JSON: json.md
- Lighting: lighting.md
- Music Player: musicplayer.md
- Notes: notes.md
- Physics: physics.md
- Player: player.md
- Player Color: player-color.md
- RPGFigurine: rpgfigurine.md
- Spawnable Objects:
- Built-in: built-in-object.md
- Custom: custom-game-objects.md
- TextTool: texttool.md
- Time: time.md
- Timer: timer.md
- Turns: turns.md
- UI: ui.md
- Vector: vector.md
- Wait: wait.md
- Web Request: webrequest.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