Skip to content

Commit

Permalink
Update 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
feightwywx committed Aug 30, 2023
1 parent 13c119e commit cd856e1
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pip install -U arcfutil

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

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

- `timinggroup`支持

Expand Down
4 changes: 2 additions & 2 deletions docs/.vuepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ module.exports = {
{ text: '快速上手', link: '/guide/' },
{ text: 'API', link: '/api/' },
{
text: 'v0.9.0', items: [
{ text: 'v0.9.0', link: '/' }
text: 'v0.10', items: [
{ text: 'v0.10', link: '/' }
]
},
{ text: 'AFF工具箱', link: 'https://aff.arcaea.icu/' }
Expand Down
4 changes: 2 additions & 2 deletions docs/api/aff-easing.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ language: zh-CN
|参数名|类型|说明|默认值|
|--|--|--|--|
|percent|float|百分比进度(小数形式)|
|type|str|变换类型,支持`s|si|so|b`|
|type|str|变换类型,支持`s|si|so|b`以及easings.net中的easing,例如`ease_in_sine`|
|b_point|list|贝塞尔曲线控制点,参数`type``b`时生效|[1/3, 0, 2/3, 1]|

### 返回值
Expand All @@ -61,7 +61,7 @@ language: zh-CN

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

### 返回值
Expand Down
2 changes: 1 addition & 1 deletion docs/api/aff-generator.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ aff片段生成函数。

|参数名|类型|说明|默认值|
|--|--|--|--|
|arc|Arc|要变换的Arc|
|arc|Arc、Tap、Hold|要变换的物件|
|start_t|int|动画开始时间点|
|stop_t|int|动画结束时间点|
|delta_x|float|x轴位移量|
Expand Down
4 changes: 2 additions & 2 deletions docs/api/aff-note.md
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ Note对象的深拷贝。
|--|--|--|--|
|time|int|Note时间点|
|totime|int|Note结束时间点|
|lane|int|Note轨道,范围`0`~`3`|
|lane|float|Note轨道|

### 方法

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

### 方法

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setuptools.setup(
name="arcfutil",
version="0.9.2",
version="0.10.0",
author=".direwolf",
author_email="[email protected]",
description="A Python module designed for processing Arcaea related files(.aff chart, songlist, etc.)",
Expand Down
2 changes: 1 addition & 1 deletion src/arcfutil/aff/note/scenecontrol.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from . import validstrings
from ...exception import *


# TODO 自定义scenecontrol支持
class SceneControl(Note):
def __init__(self, time: int, scenetype: str, x: float = 0, y: int = 0):
super(SceneControl, self).__init__(time)
Expand Down

0 comments on commit cd856e1

Please sign in to comment.