-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmkdocs.yml
123 lines (123 loc) · 4.66 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
site_name: 'SurgeScript Documentation'
site_url: 'https://docs.opensurge2d.org/'
site_author: 'Alexandre Martins'
site_description: 'SurgeScript is a scripting language for games.'
site_dir: 'docs_html/'
copyright: 'SurgeScript is a scripting language for games. Copyright © 2016-present Alexandre Martins.'
repo_url: 'https://github.com/alemart/surgescript'
strict: false
theme:
name: 'material'
favicon: 'img/favicon.ico'
icon:
logo: 'material/lightning-bolt'
palette:
- scheme: 'default'
toggle:
icon: 'material/lightbulb'
name: 'Switch to dark mode'
- scheme: 'slate'
toggle:
icon: 'material/lightbulb-outline'
name: 'Switch to light mode'
extra_javascript:
- js/analytics.js
- js/donate.js
markdown_extensions:
- attr_list
- admonition
- footnotes
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.details
nav:
- 'Introduction': 'index.md'
- 'Download': 'download.md'
- 'Crash Course':
- 'Hello, World!': 'tutorials/hello.md'
- 'Testing your scripts': 'tutorials/testing.md'
- 'Introduction to objects': 'tutorials/objects.md'
- 'Variables': 'tutorials/variables.md'
- 'Comments': 'tutorials/comments.md'
- 'Expressions': 'tutorials/expressions.md'
- 'Conditionals': 'tutorials/conditionals.md'
- 'Selections': 'tutorials/selections.md'
- 'Loops': 'tutorials/loops.md'
- 'Functions': 'tutorials/functions.md'
- 'Tags': 'tutorials/tags.md'
- 'Object tree': 'tutorials/object_tree.md'
- 'Components': 'tutorials/components.md'
- 'Properties': 'tutorials/properties.md'
- 'Packages': 'tutorials/packages.md'
- 'Advanced features': 'tutorials/advanced_features.md'
- 'Best practices': 'tutorials/best_practices.md'
- 'SurgeScript Reference':
- 'Application': 'reference/application.md'
- 'Arguments': 'reference/arguments.md'
- 'Array': 'reference/array.md'
- 'Boolean': 'reference/boolean.md'
- 'Console': 'reference/console.md'
- 'Date': 'reference/date.md'
- 'Dictionary': 'reference/dictionary.md'
- 'GC': 'reference/gc.md'
- 'Iterator': 'reference/iterator.md'
- 'Math': 'reference/math.md'
- 'Number': 'reference/number.md'
- 'Object': 'reference/object.md'
- 'Plugin': 'reference/plugin.md'
- 'String': 'reference/string.md'
- 'SurgeScript': 'reference/surgescript.md'
- 'System': 'reference/system.md'
- 'TagSystem': 'reference/tags.md'
- 'Time': 'reference/time.md'
- 'SurgeEngine Reference':
- 'Actor': 'engine/actor.md'
- 'Animation': 'engine/animation.md'
- 'Audio':
- 'Music': 'engine/music.md'
- 'Sound': 'engine/sound.md'
- 'Behaviors':
- 'Behavior': 'engine/behavior.md'
- 'CircularMovement': 'engine/circular_movement.md'
- 'DirectionalMovement': 'engine/directional_movement.md'
- 'Enemy': 'engine/enemy.md'
- 'Platformer': 'engine/platformer.md'
- 'Brick': 'engine/brick.md'
- 'Camera': 'engine/camera.md'
- 'Collisions':
- 'Collider': 'engine/collider.md'
- 'CollisionBall': 'engine/collisionball.md'
- 'CollisionBox': 'engine/collisionbox.md'
- 'Sensor': 'engine/sensor.md'
- 'Entity': 'engine/entity.md'
- 'Events':
- 'Event': 'engine/event.md'
- 'EventList': 'engine/eventlist.md'
- 'EventChain': 'engine/eventchain.md'
- 'DelayedEvent': 'engine/delayedevent.md'
- 'EntityEvent': 'engine/entityevent.md'
- 'FunctionEvent': 'engine/functionevent.md'
- 'Game': 'engine/game.md'
- 'Input':
- 'Input': 'engine/input.md'
- 'Mouse': 'engine/mouse.md'
- 'MobileGamepad': 'engine/mobile_gamepad.md'
- 'Lang': 'engine/lang.md'
- 'Level': 'engine/level.md'
- 'Platform':
- 'Platform': 'engine/platform.md'
- 'Android': 'engine/androidplatform.md'
- 'Player': 'engine/player.md'
- 'Prefs': 'engine/prefs.md'
- 'SurgeEngine': 'engine/surgeengine.md'
- 'Transform': 'engine/transform.md'
- 'UI':
- 'Text': 'engine/text.md'
- 'Vector2': 'engine/vector2.md'
- 'Video':
- 'Video': 'engine/video.md'
- 'Screen': 'engine/screen.md'
- 'Web': 'engine/web.md'