forked from genius-alray/box3-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
365 lines (361 loc) · 23.4 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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
site_name: Box3 社区文档
site_description: 一个由 AlanBestHacker 创建的,内容来自社区的第三方 Box3 文档
repo_url: https://github.com/qndm/box3-docs
edit_uri: edit/main/docs/
repo_name: box3-docs
theme:
name: material
features:
- navigation.instant
- navigation.tracking
- navigation.indexes
- navigation.tabs
#- navigation.expand
- content.tabs.link
- search.suggest
- search.highlight
language: zh
palette:
- scheme: default
primary: light blue
accent: indigo
toggle:
icon: material/weather-sunny
name: 亮色模式
- scheme: slate
primary: light blue
toggle:
icon: material/weather-night
name: 暗色模式
custom_dir: overrides
icon:
tag:
world: material/earth
extra:
tags:
世界: world
pagetime: 'on'
extra_css:
- _assets/icons.css
- _assets/global.css
extra_javascript:
- _assets/iconsParser.js
- _assets/mathjax.js
#- _assets/anchorParser.js
- _assets/voxelTypes.js
- _assets/voxelTable.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
- https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.3/gsap.min.js
- https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.3/ScrollToPlugin.min.js
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- tables
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.snippets
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
options:
custom_icons:
- overrides/icons
- pymdownx.tilde
- tables
plugins:
- search:
lang: en
- glightbox:
touchNavigation: true
loop: false
effect: zoom
width: "100%"
height: auto
zoomable: true
draggable: true
auto_caption: false
caption_position: bottom
- minify:
minify_html: true
- tags:
tags_file: tags.md
- git-revision-date-localized:
type: date
fallback_to_build_date: true
timezone: Asia/Shanghai
locate: zh
strict: true
nav:
- 主页:
- 介绍:
- 欢迎: index.md
- 关于文档: about.md
- 更新: changes.md
- 图标参考: icons.md
- 文档说明: info.md
- API 速查表: nav.md
- 标签: tags.md
- 学习:
- learn/index.md
- 粒子特效:
- learn/particle/index.md
- JavaScript:
- learn/js/index.md
- 基础教程:
- learn/js/base/index.md
- 开始:
- Hello, World!: learn/js/base/01-hello-world.md
- 欢迎玩家: learn/js/base/02-greeting.md
- 大佬の宝典:
- SQL快速入门: learn/community-articles/Nomen-sql.md
- OOP(面向对象编程)快速入门: learn/community-articles/Nomen-oop.md
- 如何优雅地写注释: learn/community-articles/Nomen-comment.md
- 快速上手函数: learn/community-articles/Nomen-function.md
- 异步编程快速入门: learn/community-articles/qndm-async.md
- 算法:
- 搜索:
- BFS 宽度优先搜索: learn/arithmetic/BFS.md
- DFS 深度优先搜索: learn/arithmetic/DFS.md
- 启发式搜索:
- learn/arithmetic/heuristic/index.md
- A*: learn/arithmetic/heuristic/aStar.md
# - JPS 跳点搜索算法: learn/arithmetic/heuristic/JPS.md
- 双向同时搜索: learn/arithmetic/bidirectional.md
- 实例教程:
- example/index.md
- LightDotCutter 简单PVE游戏:
- 起步: example/light-dot-cutter/01-start.md
- 生成敌人: example/light-dot-cutter/02-setup-enemy.md
# - 实现玩家攻击: example/light-dot-cutter/03-attack.md
# - 添加敌人和玩家的血量: example/light-dot-cutter/04-health.md
# - 设置奖励: example/light-dot-cutter/05-reward.md
# - 添加特效: example/light-dot-cutter/06-effect.md
# - 重构和扩展: example/light-dot-cutter/07-extra.md
# - 优化: example/light-dot-cutter/08-optimization.md
- JS/TS 参考:
- js/index.md
- <icon name='type'>类型</icon>:
- <def>string</def> & <def>String</def> <span block>字符串</span>: js/type/String.md
- <def>number</def> & <def>Number</def> <span block>数字</span>: js/type/Number.md
- <def>boolean</def> & <def>Boolean</def> <span block>布尔值</span>: js/type/Boolean.md
- <def>any</def> <span block>任意类型</span>: js/type/any.md
- <def>void</def> <span block>无类型</span>: js/type/void.md
- <def>null</def> <span block>空值</span>: js/type/null.md
- <def>undefined</def> <span block>未定义</span>: js/type/undefined.md
- <def>URL</def> <span block>链接</span>: js/type/URL.md
- <def>Partial</def>: js/type/Partial.md
- API参考:
- api/index.md
- <icon name="module">世界相关</icon>:
- <def>world</def> & <def>Box3World</def> / <def>GameWorld</def> <span block>世界模块</span>: api/world.md
- <def>Box3TickEvent</def> / <def>GameTickEvent</def> <span block>时钟事件</span>: api/event/TickEvent.md
- <icon name="namespace">实体创建/销毁</icon>:
- <def>Box3EntityEvent</def> / <def>GameEntityEvent</def> <span block>实体创建销毁事件</span>: api/event/EntityEvent.md
- <def>Box3PlayerEntityEvent</def> / <def>GamePlayerEntityEvent</def> <span block>玩家实体创建销毁事件</span>: api/event/PlayerEntityEvent.md
- <icon name="namespace">区域</icon>:
- <def>Box3Zone</def> / <def>GameZone</def> <span block>区域</span>: api/class/Zone.md
- <def>Box3TriggerEvent</def> / <def>GameTriggerEvent</def> <span block>触发器事件</span>: api/event/TriggerEvent.md
- <def>Box3ZoneConfig</def> / <def>GameZoneConfig</def> <span block>区域配置</span>: api/type/ZoneConfig.md
- <icon name="namespace">实体选择</icon>:
- <def>Box3SelectorString</def> / <def>GameSelectorString</def> <span block>实体选择器</span>: api/type/SelectorString.md
- <icon name="namespace">射线检测</icon>:
- <def>Box3RaycastOptions</def> / <def>GameRaycastOptions</def> <span block>射线检测配置</span>: api/type/RaycastOptions.md
- <def>Box3RaycastResult</def> / <def>GameRaycastResult</def> <span block>射线检测结果</span>: api/type/RaycastResult.md
- <icon name="module">方块相关</icon>:
- <def>voxels</def> & <def>Box3Voxels</def> / <def>GameVoxels</def> <span block>方块模块</span>: api/voxels.md
- <icon name="module">实体相关</icon>:
- <def>Box3Entity</def> / <def>GameEntity</def> <span block>实体</span>: api/class/Entity.md
- <def>Box3EntityConfig</def> / <def>GameEntityConfig</def> <span block>实体配置</span>: api/type/EntityConfig.md
- <icon name="namespace">互动相关</icon>:
- <def>Box3InteractEvent</def> / <def>GameInteractEvent</def> <span block>实体互动事件</span>: api/event/InteractEvent.md
- <icon name="namespace">动作相关</icon>:
- <def>GameMotionController</def> <span block>动作控制器</span>: api/class/MotionController.md
- <def>GameMotionHandler</def> <span block>动作处理器</span>: api/class/MotionHandler.md
- <def>GameMotionConfig</def> <span block>动作配置</span>: api/type/MotionConfig.md
- <def>GameMotionClipConfig</def> <span block>动作序列配置</span>: api/type/MotionClipConfig.md
- <def>GameMotionEvent</def> <span block>动作事件</span>: api/event/MotionEvent.md
- <icon name="namespace">物理相关</icon>:
- <def>Box3EntityContact</def> / <def>GameEntityContact</def> <span block>实体碰撞数据</span>: api/class/EntityContact.md
- <def>Box3VoxelContact</def> / <def>GameVoxelContact</def> <span block>方块碰撞数据</span>: api/class/VoxelContact.md
- <def>Box3FluidContact</def> / <def>GameFluidContact</def> <span block>液体碰撞数据</span>: api/class/FluidContact.md
- <def>Box3EntityContactEvent</def> / <def>GameEntityContactEvent</def> <span block>实体碰撞事件</span>: api/event/EntityContactEvent.md
- <def>Box3VoxelContactEvent</def> / <def>GameVoxelContactEvent</def> <span block>方块碰撞事件</span>: api/event/VoxelContactEvent.md
- <def>Box3FluidContactEvent</def> / <def>GameFluidContactEvent</def> <span block>液体碰撞事件</span>: api/event/FluidContactEvent.md
- <icon name="namespace">战斗相关</icon>:
- <def>Box3HurtOptions</def> / <def>GameHurtOptions</def> <span block>实体伤害配置</span>: api/type/HurtOptions.md
- <def>Box3DamageEvent</def> / <def>GameDamageEvent</def> <span block>实体伤害事件</span>: api/event/DamageEvent.md
- <def>Box3DieEvent</def> / <def>GameDieEvent</def> <span block>实体死亡事件</span>: api/event/DieEvent.md
- <icon name="module">玩家相关</icon>:
- <def>Box3Player</def> / <def>GamePlayer</def> <span block>玩家</span>: api/class/Player.md
- <def>Box3PlayerEntity</def> / <def>GamePlayerEntity</def> <span block>玩家实体</span>: api/type/PlayerEntity.md
- <def>PlayerNavigator</def> <span block>用户设备相关</span>: api/class/PlayerNavigator.md
- <def>SocialType</def> <span block>社交类型</span>: api/enum/SocialType.md
- <icon name="namespace">战斗相关</icon>:
- <def>Box3RespawnEvent</def> / <def>GameRespawnEvent</def> <span block>玩家重生事件</span>: api/event/RespawnEvent.md
- <icon name="namespace">穿戴配件</icon>:
- <def>Box3Wearable</def> / <def>GameWearable</def> <span block>穿戴配件</span>: api/class/Wearable.md
- <def>Box3BodyPart</def> / <def>GameBodyPart</def> <span block>身体部件类型</span>: api/enum/BodyPart.md
- <icon name="namespace">皮肤相关</icon>:
- <def>GameSkin</def> <span block>皮肤</span>: api/type/Skin.md
- <def>GameSkinValue</def> <span block>皮肤值</span>: api/type/SkinValue.md
- <def>GameSkinInvisible</def> <span block>皮肤隐藏设置</span>: api/type/SkinInvisible.md
- <icon name="namespace">聊天 输入</icon>:
- <def>Box3ChatEvent</def> / <def>GameChatEvent</def> <span block>聊天事件</span>: api/event/ChatEvent.md
- <def>Box3ClickEvent</def> / <def>GameClickEvent</def> <span block>点击事件</span>: api/event/ClickEvent.md
- <def>Box3InputEvent</def> / <def>GameInputEvent</def> <span block>输入事件</span>: api/event/InputEvent.md
- <def>Box3ButtonType</def> / <def>GameButtonType</def> <span block>按键类型</span>: api/enum/ButtonType.md
- <def>GameKeyBoardEvent</def> <span block>键盘事件</span>: api/event/KeyBoardEvent.md
- <icon name="namespace">摄像机相关</icon>:
- <def>Box3CameraMode</def> / <def>GameCameraMode</def> <span block>摄像机模式</span>: api/enum/CameraMode.md
- <def>Box3InputDirection</def> / <def>GameInputDirection</def> <span block>输入方向</span>: api/enum/InputDirection.md
- <def>Box3CameraFreezedAxis</def> / <def>GameCameraFreezedAxis</def>: api/enum/CameraFreezedAxis.md
- <icon name="namespace">运动相关</icon>:
- <def>Box3PlayerMoveState</def> / <def>GamePlayerMoveState</def> <span block>玩家移动状态</span>: api/enum/PlayerMoveState.md
- <def>Box3PlayerWalkState</def> / <def>GamePlayerWalkState</def> <span block>玩家步行状态</span>: api/enum/PlayerWalkState.md
- <icon name="namespace">对话框相关</icon>:
- <def>Box3DialogType</def> / <def>GameDialogType</def> <span block>对话框类型</span>: api/enum/DialogType.md
- <def>Box3DialogCall</def> / <def>GameDialogCall</def> <span block>对话框调用</span>: api/class/Player.md/#Box3DialogCall
- <def>Box3DialogParams</def> / <def>GameDialogParams</def> <span block>对话框配置</span>: api/type/DialogParams.md
- <def>Box3DialogSelectResponse</def> / <def>GameDialogSelectResponse</def> <span block>选择对话框结果</span>: api/type/DialogSelectResponse.md
- <def>Box3DialogCancelOption</def> / <def>GameDialogCancelOption</def> <span block>对话框取消选项</span>: api/type/DialogCancelOption.md
- <icon name="namespace">商业化</icon>:
- <def>GamePurchaseSuccessEvent</def> <span block>购买事件</span>: api/event/PurchaseSuccessEvent.md
- <icon name="module">数据库(仅旧版编辑器)</icon>:
- <def>db</def> & <def>Box3Database</def> / <def>GameDatabase</def> <span block>数据库模块</span>: api/db.md
- <def>Box3QueryResult</def> / <def>GameQueryResult</def> <span block>数据查找结果</span>: api/class/QueryResult.md
- <icon name="module">数据储存(仅Arena编辑器)</icon>:
- <def>storage</def> & <def>GameStorage</def> <span block>数据存储模块</span>: api/storage.md
- <def>GameDataStorage</def> <span block>数据存储空间</span>: api/class/DataStorage.md
- <def>ListPageOptions</def> <span block>列表翻页配置</span>: api/type/ListPageOptions.md
- <def>QueryList</def> <span block>数据查询列表</span>: api/class/QueryList.md
- <def>ReturnValue</def> <span block>数据查询返回</span>: api/type/ReturnValue.md
- <icon name="module">数据通信(仅Arena编辑器)</icon> :
- <constObject>remoteChannel</constObject> & <def>ServerRemoteChannel</def> <span block>数据通信(服务端)</span>: api/remoteChannel.md
- <def>ServerEvent</def>: api/event/ServerEvent.md
- <icon name="module">动画</icon>:
- <def>Box3Animation</def> / <def>GameAnimation</def> <span block>动画</span>: api/class/Animation.md
- <def>Box3AnimationEvent</def> / <def>GameAnimationEvent</def> <span block>动画事件</span>: api/event/AnimationEvent.md
- <def>Box3AnimationPlaybackState</def> / <def>GameAnimationPlaybackState</def> <span block>动画播放状态</span>: api/enum/AnimationPlaybackState.md
- <def>Box3AnimationDirection</def> / <def>GameAnimationDirection</def> <span block>动画播放方向</span>: api/enum/AnimationDirection.md
- <def>Box3Easing</def> / <def>GameEasing</def> <span block>动画缓动效果</span>: api/enum/Easing.md
- <def>Box3WorldKeyframe</def> / <def>GameWorldKeyframe</def> <span block>世界关键帧</span>: api/type/WorldKeyframe.md
- <def>Box3EntityKeyframe</def> / <def>GameEntityKeyframe</def> <span block>实体关键帧</span>: api/type/EntityKeyframe.md
- <def>Box3PlayerKeyframe</def> / <def>GamePlayerKeyframe</def> <span block>玩家关键帧</span>: api/type/PlayerKeyframe.md
- <def>Box3AnimationPlaybackConfig</def> / <def>GameAnimationPlaybackConfig</def> <span block>动画播放配置参数</span>: api/type/AnimationPlaybackConfig.md
- <icon name="module">声音</icon>:
- <def>Sound</def> <span block>声音(仅Arena编辑器)</span>: api/class/Sound.md
- <def>Box3SoundEffect</def> / <def>GameSoundEffect</def> <span block>声音效果配置</span>: api/type/SoundEffect.md
- <icon name="module private">用户图形界面</icon>:
- <def>gui</def> & <def>GameGUI</def> <span block>用户图形界面模块</span>: api/gui.md
- <def>GUIConfig</def><span block>GUI配置</span>: api/type/LoggerMethod.md
- <icon name="module private">实时语言通信</icon>:
- <def>rtc</def> & <def>GameRTC</def> <span block>实时语言通信模块</span>: api/rtc.md
- <def>GameRTCChannel</def> <span block>RTC通道</span>: api/class/RTCChannel.md
- <icon name="module private">HTTP</icon>:
- <def>http</def> & <def>Box3HttpAPI</def> / <def>GameHttpAPI</def> <span block>HTTP模块</span>: api/http.md
- <def>Box3HttpFetchResponse</def> / <def>GameHttpFetchResponse</def> <span block>请求响应</span>: api/class/HttpFetchResponse.md
- <def>Box3HttpRequest</def> / <def>GameHttpRequest</def> <span block>[无效]HTTP请求</span>: api/class/HttpRequest.md
- <def>Box3HttpResponse</def> / <def>GameHttpResponse</def> <span block>[无效]HTTP响应</span>: api/class/HttpResponse.md
- <def>Box3HttpFetchParams</def> <span block>HTTP请求参数</span>: api/type/HttpFetchParams.md
- <def>GameHttpFetchRequestOptions</def> <span block>HTTP请求配置</span>: api/type/HttpFetchRequestOptions.md
- <def>GameHttpFetchHeaders</def> <span block>HTTP请求头配置</span>: api/type/HttpFetchHeaders.md
- <def>Box3HttpHandler</def> / <def>GameHttpHandler</def> <span block>HTTP事件监听器</span>: api/type/HttpHandler.md
- <icon name="module">控制台</icon>:
- <def>console</def> & <def>GameConsole</def> <span block>控制台</span>: api/console.md
- <def>Box3LoggerMethod</def> / <def>GameLoggerMethod</def> <span block>控制台方法</span>: api/type/LoggerMethod.md
- <icon name="module private">资源文件</icon>:
- <def>resources</def> & <def>Box3ResourceSystem</def> / <def>GameResourceSystem</def> <span block>资源文件</span>: api/resources.md
- <def>Box3AssetListEntry</def> / <def>GameAssetListEntry</def> <span block>资源文件条目</span>: api/class/AssetListEntry.md
- <def>Box3AssetType</def> / <def>GameAssetType</def> <span block>资源文件类型</span>: api/enum/AssetType.md
- <icon name='namespace'>Box3 通用属性</icon>:
- <def>Box3Vector3</def> / <def>GameVector3</def> <span block>三维向量</span>: api/class/Vector3.md
- <def>Box3Quaternion</def> / <def>GameQuaternion</def> <span block>四元数</span>: api/class/Quaternion.md
- <def>Box3Bounds3</def> / <def>GameBounds3</def> <span block>三维区域空间</span>: api/class/Bounds3.md
- <def>Box3RGBColor</def> / <def>GameRGBColor</def> <span block>RGB颜色</span>: api/class/RGBColor.md
- <def>Box3RGBAColor</def> / <def>GameRGBAColor</def> <span block>RGBA颜色</span>: api/class/RGBAColor.md
- <def>JSONValue</def> <span block>类JSON格式</span>: api/type/JSONValue.md
- <icon name="module">事件</icon>:
- api/event/index.md
- <def>Box3EventChannel</def> / <def>GameEventChannel</def> <span block>事件频道</span>: api/type/EventChannel.md
- <def>Box3EventFuture</def> / <def>GameEventFuture</def>: api/type/EventFuture.md
- <def>Box3EventHandlerToken</def> / <def>GameEventHandlerToken</def> <span block>事件令牌</span>: api/class/EventHandlerToken.md
- <icon name='class'>监听器参数</icon>:
- <def>Box3TickEvent</def> / <def>GameTickEvent</def> <span block>时钟事件</span>: api/event/TickEvent.md
- <def>Box3RespawnEvent</def> / <def>GameRespawnEvent</def> <span block>玩家重生事件</span>: api/event/RespawnEvent.md
- <def>Box3DamageEvent</def> / <def>GameDamageEvent</def> <span block>实体伤害事件</span>: api/event/DamageEvent.md
- <def>Box3DieEvent</def> / <def>GameDieEvent</def> <span block>实体死亡事件</span>: api/event/DieEvent.md
- <def>Box3ChatEvent</def> / <def>GameChatEvent</def> <span block>聊天事件</span>: api/event/ChatEvent.md
- <def>Box3ClickEvent</def> / <def>GameClickEvent</def> <span block>点击事件</span>: api/event/ClickEvent.md
- <def>Box3InputEvent</def> / <def>GameInputEvent</def> <span block>输入事件</span>: api/event/InputEvent.md
- <def>GameKeyBoardEvent</def> <span block>键盘事件</span>: api/event/KeyBoardEvent.md
- <def>Box3InteractEvent</def> / <def>GameInteractEvent</def> <span block>实体互动事件</span>: api/event/InteractEvent.md
- <def>Box3EntityContactEvent</def> / <def>GameEntityContactEvent</def> <span block>实体碰撞事件</span>: api/event/EntityContactEvent.md
- <def>Box3VoxelContactEvent</def> / <def>GameVoxelContactEvent</def> <span block>方块碰撞事件</span>: api/event/VoxelContactEvent.md
- <def>Box3FluidContactEvent</def> / <def>GameFluidContactEvent</def> <span block>液体碰撞事件</span>: api/event/FluidContactEvent.md
- <def>Box3AnimationEvent</def> / <def>GameAnimationEvent</def> <span block>动画事件</span>: api/event/AnimationEvent.md
- <def>GamePurchaseSuccessEvent</def> <span block>购买事件</span>: api/event/PurchaseSuccessEvent.md
- <def>ServerEvent</def>: api/event/ServerEvent.md
- <span block>杂项</span>: api/tool.md
- Client API参考:
- api_client/index.md
- <def>ui</def> <span block>页面根节点</span>: api_client/ui.md
- <def>input</def> & <def>InputSystem</def> <span block>输入系统</span>: api_client/input.md
- <span block>全局</span>: api_client/global.md
- <constObject>remoteChannel</constObject> & <def>ClientRemoteChannel</def> <span block>数据通信(客户端)</span>: api_client/remoteChannel.md
- <icon name='enum'>枚举</icon>:
- <def>PointerEventBehavior</def> <span block>指针事件行为</span>: api_client/enum/PointerEventBehavior.md
- <icon name='class'>类</icon>:
- <icon name='class'>Box3 基本数据类型</span>:
- <def>Vec2</def> <span block>二维向量</span>: api_client/class/Vec2.md
- <def>Vec3</def> <span block>三维向量</span>: api_client/class/Vec3.md
- <def>Coord2</def> <span block>二维位置</span>: api_client/class/Coord2.md
- <icon name='class'>UI 节点</icon>:
- <def>UiNode</def> <span block>节点</span>: api_client/class/UiNode.md
- <def>UiRenderable</def> <span block>可渲染节点</span>: api_client/class/UiRenderable.md
- <def>UiBox</def> <span block>框架节点</span>: api_client/class/UiBox.md
- <def>UiImage</def> <span block>图像节点</span>: api_client/class/UiImage.md
- <def>UiText</def> <span block>文本节点</span>: api_client/class/UiText.md
- <def>UiInput</def> <span block>输入框节点</span>: api_client/class/UiInput.md
- <icon name='class'>UI 组件</icon>:
- <def>UiComponent</def> <span block>[无效]UI组件</span>: api_client/class/UiComponent.md
- <def>UiScale</def> <span block>UI缩放</span>: api_client/class/UiScale.md
- <icon name='event'>事件</icon>:
- api_client/event.md
- <def>EventEmitter</def> <span block>事件处理器</span>: api_client/class/EventEmitter.md
- <icon name='type'>事件映射表</icon>:
- <def>UiNodeEvents</def> <span block>节点事件</span>: api_client/type/UiNodeEvents.md
- <def>UiInputEvents</def> <span block>输入节点事件</span>: api_client/type/UiInputEvents.md
- <def>PointerLockEvents</def> <span block>鼠标指针锁定事件</span>: api_client/type/PointerLockEvents.md
- <def>ClientRemoteChannelEvents</def> <span block>服务端消息事件</span>: api_client/type/ClientRemoteChannelEvents.md
- <icon name='type'>监听器参数</icon>:
- <def>UiEvent</def> <span block>UI事件</span>: api_client/interface/UiEvent.md
- <def>UiInputEvent</def> <span block>输入节点事件</span>: api_client/interface/UiInputEvent.md
- <def>PointerLockChangeEvent</def> <span block>鼠标指针锁定状态更改事件</span>: api_client/type/PointerLockChangeEvent.md
- 第三方模块参考:
- modules/index.md