Releases: Arkueid/live2d-py
Releases · Arkueid/live2d-py
v0.3.6
v0.3.5
- Add
fadeout
param forSetRandomExpression
(#43) - Fix #42 (solution by @TinyKiecoo)
v0.3.4
v0.3.3
- 修复3.12.1及以上版本无法通过pip安装 (by @I-love-study)
- 修复平移、缩放后HitPart错位问题
- 添加表情复位、Pose复位、Motion强制停止功能 (from #39)
v0.3.2
-
使用Python SABI构建动态库,理论上Python
3.2以上版本的构建产物可以互通。 -
自动化修改Framework,目前可以直接更新Cubism Core、Cubism
Framework,无需额外配置。 -
添加setup-universal.py,使用该脚本直接安装适用于win64的live2d-py,无需编译。
v0.3.1
v0.3.0
- Rewrite
live2d.v2
in pure Python by translating Cubism Web SDK 2.1. - Add
setter
andgetter
forPartScreenColor
andPartMultiplyColor
. - Remove
setGLProfiles
inlive2d.v3
Now live2d.v2
is available to 64-bit Python Interpreter.
v0.2.5
v0.2.4
同步更新 PyPI
添加 Part
透明度控制
class LAppModel:
...
def GetPartCount() -> int:
pass
def GetPartId(index: int) -> str:
pass
def GetPartIds() -> list[str]:
pass
def SetPartOpacity(index: int, opacity: float) -> None:
pass
用例:
log.Debug(f"Part Count: {model.GetPartCount()}")
partIds = model.GetPartIds()
log.Debug(f"Part Ids: {partIds}")
model.SetPartOpacity(partIds.index("PartHairBack"), 0.5)