Skip to content

Commit 03e6bd7

Browse files
author
tdiant
committed
push to docsify
1 parent a64aa33 commit 03e6bd7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+61
-3683
lines changed
File renamed without changes.

.vuepress/config.js

-83
This file was deleted.

README.md

+1-10
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,3 @@
1-
---
2-
home: true
3-
heroText: Bukkit Dev Note
4-
tagline:
5-
actionText: 开始 →
6-
actionLink: /home/
7-
footer: Apache License 2.0 | 2018-2020 | tdiant&BakaRinya
8-
---
9-
101
感谢您的访问.
112
本站旨在为BukkitAPI开发者提供清晰的入门资料.
123

@@ -24,5 +15,5 @@ footer: Apache License 2.0 | 2018-2020 | tdiant&BakaRinya
2415
## 联系方式
2516

2617
您可以在GitHub仓库中发起issue.
27-
18+
2819
不一定及时回复.

_sidebar.md

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
* [首页](README.md)
2+
* 第一部分 基本概念
3+
- [写在前面](unit/1-1.md)
4+
- [MC服务端介绍](unit/1-2.md)
5+
- [代码中的MC世界](unit/1-3.md)
6+
- [检索需要的信息](unit/1-4.md)
7+
- [服务端与客户端](unit/1-5.md)
8+
* 第二部分 基础内容
9+
- [最简单的插件](unit/2-1.md)
10+
- [事件的监听](unit/2-2.md)
11+
- [配置API](unit/2-3.md)
12+
- [命令执行器](unit/2-4.md)
13+
* 第三部分 进阶功能
14+
- [箱子GUI的实现](unit/3-1.md)
15+
- [自定义事件](unit/3-2.md)
16+
- [深入plugin.yml](unit/3-3.md)
17+
- [配置API的序列化及遍历](unit/3-4.md)
18+
- [多线程与多任务](unit/3-5.md)
19+
- [自定义合成表](unit/3-6.md)
20+
- [粒子效果和音效播放](unit/3-7.md)
21+
- [世界生成器](unit/3-8.md)
22+
- [Title、Bar与计分板显示](unit/3-9.md)
23+
- [经验与成就](unit/3-10.md)
24+
- [插件系统基本玩法](unit/3-11.md)
25+
* 第四部分 常用依赖
26+
- [Vault](unit/4-1.md)
27+
* 第五部分 底层部分
28+
- [认识NMS与OBC](unit/5-1.md)
29+
- [自定义发包](unit/5-2.md)
30+
- [NBT数据操作](unit/5-3.md)

contribute.md

-56
This file was deleted.

donate.md

-22
This file was deleted.

home.md

-73
This file was deleted.

index.html

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Document</title>
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
7+
<meta name="description" content="Description">
8+
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
9+
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify/lib/themes/vue.css">
10+
</head>
11+
<body>
12+
<div id="app"></div>
13+
<script>
14+
window.$docsify = {
15+
name: 'Bukkit Development Note',
16+
repo: 'https://github.com/tdiant/BukkitDevelopmentNote',
17+
themeColor: '#25798A',
18+
loadSidebar: true,
19+
subMaxLevel: 2,
20+
loadNavbar: true,
21+
coverpage: false
22+
}
23+
</script>
24+
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
25+
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/zoom-image.min.js"></script>
26+
</body>
27+
</html>

0 commit comments

Comments
 (0)