Update to Cubism 4 SDK for Web R3

master
ito 2021-06-10 11:26:53 +09:00
parent 63cc9925dc
commit 50de62e306
3 changed files with 13 additions and 10 deletions

View File

@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [4-r.3] - 2021-06-10
### Fixed
* Fix motion event time value from Int to Float.
## [4-r.3-beta.1] - 2021-05-13 ## [4-r.3-beta.1] - 2021-05-13
### Added ### Added
@ -50,6 +57,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
* Reformat code using Prettier and ESLint. * Reformat code using Prettier and ESLint.
[4-r.3]: https://github.com/Live2D/CubismWebFramework/compare/4-r.3-beta.1...4-r.3
[4-r.3-beta.1]: https://github.com/Live2D/CubismWebFramework/compare/4-r.2...4-r.3-beta.1 [4-r.3-beta.1]: https://github.com/Live2D/CubismWebFramework/compare/4-r.2...4-r.3-beta.1
[4-r.2]: https://github.com/Live2D/CubismWebFramework/compare/4-r.1...4-r.2 [4-r.2]: https://github.com/Live2D/CubismWebFramework/compare/4-r.1...4-r.2
[4-r.1]: https://github.com/Live2D/CubismWebFramework/compare/ce2585a919ac6e99f64dd468933772c6f1abbcc7...4-r.1 [4-r.1]: https://github.com/Live2D/CubismWebFramework/compare/ce2585a919ac6e99f64dd468933772c6f1abbcc7...4-r.1

View File

@ -1,4 +1,4 @@
# \[Beta Version\] Cubism Web Framework # Cubism Web Framework
Live2D Cubism 4 Editor で出力したモデルをアプリケーションで利用するためのフレームワークです。 Live2D Cubism 4 Editor で出力したモデルをアプリケーションで利用するためのフレームワークです。
@ -7,10 +7,6 @@ Live2D Cubism 4 Editor で出力したモデルをアプリケーションで利
ビルドを行うことで、ブラウザで利用可能な JavaScript ライブラリとして利用することができます。 ビルドを行うことで、ブラウザで利用可能な JavaScript ライブラリとして利用することができます。
**本 SDK は、 Beta バージョンとなります。先行して新機能を取り込んでいるため、不安定な挙動を示す場合がございます。安定した製品をお求めの方は、公式サイトから配布されている正式版のパッケージ又は `develop` `master` ブランチをご利用ください。**
**\[Beta Version\] の SDK の不具合、各種ご意見等に関しましては、 Live2D コミュニティ にてご連絡ください。直接のコードに対する指摘、修正等は、直接 Pull requests としてご投稿ください。**
## ライセンス ## ライセンス
@ -21,10 +17,9 @@ Live2D Cubism 4 Editor で出力したモデルをアプリケーションで利
### Node.js ### Node.js
* 15.11.0 * 16.1.0
* 14.16.0 * 14.17.0
* 12.21.0 * 12.22.1
* 10.24.0
### TypeScript ### TypeScript

View File

@ -345,7 +345,7 @@ export class CubismMotionJson {
.getValueByString(UserData) .getValueByString(UserData)
.getValueByIndex(userDataIndex) .getValueByIndex(userDataIndex)
.getValueByString(Time) .getValueByString(Time)
.toInt(); .toFloat();
} }
/** /**