开始使用
如何反馈沟通问题
获得帮助
- 如果您刚接触我们的产品,可以先从官方教程开始,先尝试做一个游戏 demo:
- 如果您想探索更多功能,可以直接查看我们的产品手册和API手册;
- 如果你在创作过程中有任何疑问,可以直接访问论坛与其他创作者沟通讨论;
网站结构
善用搜索+目录结构查找有用信息,后续会统一官方内容(产品手册等)并不断优化搜索;
反馈问题
如果您想报告bug或者反馈问题,可以在网页直接划线并通过 GitHub 提交 issue !
如何参与内容贡献
帮助同伴
贡献代码并不是对我们的唯一贡献形式,欢迎通过论坛为其他创作者回答问题&发布心得技巧,这是一种非常有价值的贡献。
贡献代码
直接点击网页编辑按钮可以编辑当前网页,pull request 会在一个工作日内处理!
添加描述
直接搜索要编辑的文档并在对应地方修改描述,其中超链接 markdown 语法如下:
markdown
[超链接显示名](超链接地址 "超链接title")
[API手册](https://api-docs.ark.online/)。
[超链接显示名](超链接地址 "超链接title")
[API手册](https://api-docs.ark.online/)。
渲染效果如下
添加代码
网站使用Shiki规范标识代码,您需要在代码块前后加```,ts代码还需要在开头加一下ts;
```ts
// 两倍速播放
let anim = player.character.loadAnimation(animGUID);
anim.rate = 2;
anim.play();
// 动画播放加速/减慢成n秒
this.Anim = player.character.loadAnimation(this.AnimList[0]);
this.Anim.rate = this.Anim.length/n;
this.Anim.play();
```
```ts
// 两倍速播放
let anim = player.character.loadAnimation(animGUID);
anim.rate = 2;
anim.play();
// 动画播放加速/减慢成n秒
this.Anim = player.character.loadAnimation(this.AnimList[0]);
this.Anim.rate = this.Anim.length/n;
this.Anim.play();
```
渲染效果如下
ts
// 两倍速播放
let anim = player.character.loadAnimation(animGUID);
anim.rate = 2;
anim.play();
// 动画播放加速/减慢成n秒
this.Anim = player.character.loadAnimation(this.AnimList[0]);
this.Anim.rate = this.Anim.length/n;
this.Anim.play();
// 两倍速播放
let anim = player.character.loadAnimation(animGUID);
anim.rate = 2;
anim.play();
// 动画播放加速/减慢成n秒
this.Anim = player.character.loadAnimation(this.AnimList[0]);
this.Anim.rate = this.Anim.length/n;
this.Anim.play();
添加高亮
高亮直接在文字块前后加:::,有以下5个类型,如:warning XXX,XXX为显示标题;
markdown
::: info
This is an info box.
:::
::: tip
This is a tip.
:::
::: warning Precautions
This is a warning.
:::
::: danger Deprecated
This is a dangerous warning.
:::
::: details
This is a details block.
:::
::: info
This is an info box.
:::
::: tip
This is a tip.
:::
::: warning Precautions
This is a warning.
:::
::: danger Deprecated
This is a dangerous warning.
:::
::: details
This is a details block.
:::
渲染效果如下
INFO
This is an info box.
TIP
This is a tip.
Precautions
This is a warning.
Deprecated
This is a dangerous warning.
Details
This is a details block.