-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
118 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,16 @@ | ||
--- | ||
title: 自定义关卡 | ||
index: false | ||
index: true | ||
order: 1 | ||
icon: feather | ||
pageInfo: false | ||
breadcrumb: false | ||
sidebar: false | ||
comment: false | ||
--- | ||
|
||
<script setup> | ||
import LevelList from '@source/components/level-list/App.vue'; | ||
import { provide } from 'vue'; | ||
provide("i18nLanguage",'zh-CN'); | ||
</script> | ||
|
||
> [!info] | ||
> 本页面为自定义关卡列表,点击卡片即可下载关卡文件,在游戏设置内点击`Play Local Level`导入即可游玩。若列表为空,请等待或尝试刷新页面。 | ||
> 在自定义关卡列表中,点击条目标题即可下载关卡文件,在游戏设置内点击`Play Local Level`导入即可游玩。若列表为空,请等待或尝试刷新页面。 | ||
> | ||
> 编写自定义关卡的教程见[自定义关卡指南](/guide/level/) | ||
> 官方关卡为制作组成员编写的关卡,包含示例关卡文件。社区关卡内包含了 Discord 和其它社区成员制作的关卡文件。 | ||
> 编写自定义关卡的教程见[自定义关卡指南](/guide/level/)。 | ||
<LevelList authorGroup = "official"/> | ||
<Catalog /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
title: 社区关卡 | ||
index: true | ||
order: 3 | ||
icon: feather-pointed | ||
pageInfo: false | ||
comment: false | ||
--- | ||
|
||
<script setup> | ||
import LevelList from '@source/components/level-list/App.vue'; | ||
import { provide } from 'vue'; | ||
provide("i18nLanguage",'zh-CN'); | ||
</script> | ||
|
||
<LevelList authorGroup = "custom"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
title: 官方关卡 | ||
index: true | ||
order: 2 | ||
icon: pen-fancy | ||
pageInfo: false | ||
comment: false | ||
--- | ||
|
||
<script setup> | ||
import LevelList from '@source/components/level-list/App.vue'; | ||
import { provide } from 'vue'; | ||
provide("i18nLanguage",'zh-CN'); | ||
</script> | ||
|
||
<LevelList authorGroup = "official"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,16 @@ | ||
--- | ||
title: Custom Level | ||
index: false | ||
index: true | ||
order: 1 | ||
icon: feather | ||
pageInfo: false | ||
breadcrumb: false | ||
sidebar: false | ||
comment: false | ||
--- | ||
|
||
<script setup> | ||
import LevelList from '@source/components/level-list/App.vue'; | ||
import { provide } from 'vue'; | ||
provide("i18nLanguage",'en'); | ||
</script> | ||
|
||
> [!info] | ||
> This page is a list of custom levels. Click on the card to download the level file. Click `Play Local Level` in the game settings to import it and play. If the list is empty, please wait or try to refresh the page. | ||
> In the custom level list, click the entry title to download the level file, and click `Play Local Level` in the game settings to import it and play. If the list is empty, please wait or try to refresh the page. | ||
> | ||
> For tutorials on writing custom levels, see [Custom Level Guide](/en/guide/level/) | ||
> The official levels is for levels written by the production team members, including sample level files. The community levels contains level files made by Discord and other community members. | ||
> For tutorials on writing custom levels, see [Custom Level Guide](/guide/level/). | ||
<LevelList authorGroup = "official"/> | ||
<Catalog /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
title: Community Level | ||
index: true | ||
order: 3 | ||
icon: feather-pointed | ||
pageInfo: false | ||
comment: false | ||
--- | ||
|
||
<script setup> | ||
import LevelList from '@source/components/level-list/App.vue'; | ||
import { provide } from 'vue'; | ||
provide("i18nLanguage",'en'); | ||
</script> | ||
|
||
<LevelList authorGroup = "custom"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
title: Official Level | ||
index: true | ||
order: 2 | ||
icon: pen-fancy | ||
pageInfo: false | ||
comment: false | ||
--- | ||
|
||
<script setup> | ||
import LevelList from '@source/components/level-list/App.vue'; | ||
import { provide } from 'vue'; | ||
provide("i18nLanguage",'en'); | ||
</script> | ||
|
||
<LevelList authorGroup = "official"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,16 @@ | ||
--- | ||
title: Custom Level | ||
index: false | ||
index: true | ||
order: 1 | ||
icon: feather | ||
pageInfo: false | ||
breadcrumb: false | ||
sidebar: false | ||
comment: false | ||
--- | ||
|
||
<script setup> | ||
import LevelList from '@source/components/level-list/App.vue'; | ||
import { provide } from 'vue'; | ||
provide("i18nLanguage",'pt-BR'); | ||
</script> | ||
|
||
> [!info] | ||
> This page is a list of custom levels. Click on the card to download the level file. Click `Play Local Level` in the game settings to import it and play. If the list is empty, please wait or try to refresh the page. | ||
> In the custom level list, click the entry title to download the level file, and click `Play Local Level` in the game settings to import it and play. If the list is empty, please wait or try to refresh the page. | ||
> | ||
> For tutorials on writing custom levels, see [Custom Level Guide](/en/guide/level/) | ||
> The official levels is for levels written by the production team members, including sample level files. The community levels contains level files made by Discord and other community members. | ||
> For tutorials on writing custom levels, see [Custom Level Guide](/guide/level/). | ||
<LevelList authorGroup = "official"/> | ||
<Catalog /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
title: Community Level | ||
index: true | ||
order: 3 | ||
icon: feather-pointed | ||
pageInfo: false | ||
comment: false | ||
--- | ||
|
||
<script setup> | ||
import LevelList from '@source/components/level-list/App.vue'; | ||
import { provide } from 'vue'; | ||
provide("i18nLanguage",'pt-BR'); | ||
</script> | ||
|
||
<LevelList authorGroup = "custom"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
title: Official Level | ||
index: true | ||
order: 2 | ||
icon: pen-fancy | ||
pageInfo: false | ||
comment: false | ||
--- | ||
|
||
<script setup> | ||
import LevelList from '@source/components/level-list/App.vue'; | ||
import { provide } from 'vue'; | ||
provide("i18nLanguage",'pt-BR'); | ||
</script> | ||
|
||
<LevelList authorGroup = "official"/> |