lyb-pixi-js 1.0.19 → 1.0.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -38,14 +38,12 @@ export declare class LibPixiSpine extends Spine {
38
38
  /** @description 设置动画
39
39
  * @param animationName 动画名称
40
40
  * @param loop 是否循环播放
41
- * @param hide 播完是否隐藏
42
41
  */
43
42
  setAnimation(animationName?: string, loop?: boolean): Promise<void>;
44
43
  /** @description 添加动画
45
44
  * @param animationName 动画名称
46
45
  * @param loop 是否循环播放
47
46
  * @param delay 延迟播放时间
48
- * @param hide 播完是否隐藏
49
47
  */
50
48
  addAnimation(animationName?: string, loop?: boolean, delay?: number): Promise<void>;
51
49
  /** @description 改变骨骼数据 */
@@ -40,7 +40,6 @@ export class LibPixiSpine extends Spine {
40
40
  /** @description 设置动画
41
41
  * @param animationName 动画名称
42
42
  * @param loop 是否循环播放
43
- * @param hide 播完是否隐藏
44
43
  */
45
44
  setAnimation(animationName = "animation", loop = false) {
46
45
  return new Promise((resolve) => {
@@ -56,7 +55,6 @@ export class LibPixiSpine extends Spine {
56
55
  * @param animationName 动画名称
57
56
  * @param loop 是否循环播放
58
57
  * @param delay 延迟播放时间
59
- * @param hide 播完是否隐藏
60
58
  */
61
59
  addAnimation(animationName = "animation", loop = false, delay = 0) {
62
60
  return new Promise((resolve) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lyb-pixi-js",
3
- "version": "1.0.19",
3
+ "version": "1.0.20",
4
4
  "description": "自用Pixi.JS方法库",
5
5
  "license": "ISC",
6
6
  "type": "module",