Skip to content

Commit cd856e1

Browse files
committed
Update 0.10.0
1 parent 13c119e commit cd856e1

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ pip install -U arcfutil
2222

2323
- 支持切片等特性。Python式地创作谱面吧!
2424

25-
- 支持Arcaea谱面的各种元素!(截至2021年愚人节版本v3.5.3)
25+
- 支持Arcaea谱面的各种元素!
2626

2727
- `timinggroup`支持
2828

docs/.vuepress/config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ module.exports = {
3131
{ text: '快速上手', link: '/guide/' },
3232
{ text: 'API', link: '/api/' },
3333
{
34-
text: 'v0.9.0', items: [
35-
{ text: 'v0.9.0', link: '/' }
34+
text: 'v0.10', items: [
35+
{ text: 'v0.10', link: '/' }
3636
]
3737
},
3838
{ text: 'AFF工具箱', link: 'https://aff.arcaea.icu/' }

docs/api/aff-easing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ language: zh-CN
4646
|参数名|类型|说明|默认值|
4747
|--|--|--|--|
4848
|percent|float|百分比进度(小数形式)|
49-
|type|str|变换类型,支持`s|si|so|b`|
49+
|type|str|变换类型,支持`s|si|so|b`以及easings.net中的easing,例如`ease_in_sine`|
5050
|b_point|list|贝塞尔曲线控制点,参数`type``b`时生效|[1/3, 0, 2/3, 1]|
5151

5252
### 返回值
@@ -61,7 +61,7 @@ language: zh-CN
6161

6262
|参数名|类型|说明|默认值|
6363
|--|--|--|--|
64-
|type|str|变换类型,支持`s|si|so|b`|
64+
|type|str|变换类型,支持`s|si|so|b`以及easings.net中的easing,例如`ease_in_sine`|
6565
|b_point|list|贝塞尔曲线控制点,参数`type``b`时生效|[1/3, 0, 2/3, 1]|
6666

6767
### 返回值

docs/api/aff-generator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ aff片段生成函数。
1919

2020
|参数名|类型|说明|默认值|
2121
|--|--|--|--|
22-
|arc|Arc|要变换的Arc|
22+
|arc|Arc、Tap、Hold|要变换的物件|
2323
|start_t|int|动画开始时间点|
2424
|stop_t|int|动画结束时间点|
2525
|delta_x|float|x轴位移量|

docs/api/aff-note.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ Note对象的深拷贝。
530530
|--|--|--|--|
531531
|time|int|Note时间点|
532532
|totime|int|Note结束时间点|
533-
|lane|int|Note轨道,范围`0`~`3`|
533+
|lane|float|Note轨道|
534534

535535
### 方法
536536

@@ -950,7 +950,7 @@ Note对象的深拷贝。
950950
|参数名|类型|说明|默认值|
951951
|--|--|--|--|
952952
|time|int|Note时间点|
953-
|lane|int|Note轨道,范围`0`~`3`|
953+
|lane|float|Note轨道|
954954

955955
### 方法
956956

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setuptools.setup(
88
name="arcfutil",
9-
version="0.9.2",
9+
version="0.10.0",
1010
author=".direwolf",
1111
author_email="kururinmiracle@outlook.com",
1212
description="A Python module designed for processing Arcaea related files(.aff chart, songlist, etc.)",

src/arcfutil/aff/note/scenecontrol.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from . import validstrings
99
from ...exception import *
1010

11-
11+
# TODO 自定义scenecontrol支持
1212
class SceneControl(Note):
1313
def __init__(self, time: int, scenetype: str, x: float = 0, y: int = 0):
1414
super(SceneControl, self).__init__(time)

0 commit comments

Comments
 (0)