@zeewain/3d-avatar-sdk 1.2.0 → 1.2.2

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.
Files changed (55) hide show
  1. package/README.md +6 -5
  2. package/dist/assets/Build/webgl.data.unityweb +0 -0
  3. package/dist/assets/Build/webgl.framework.js.unityweb +0 -0
  4. package/dist/assets/Build/webgl.wasm.unityweb +0 -0
  5. package/dist/examples/test-umd/index.html +762 -0
  6. package/dist/examples/test-vue2/.eslintignore +45 -0
  7. package/dist/examples/test-vue2/.eslintrc.js +174 -0
  8. package/dist/examples/test-vue2/.stylelintignore +50 -0
  9. package/dist/examples/test-vue2/.stylelintrc.js +79 -0
  10. package/dist/examples/test-vue2/README.md +139 -0
  11. package/dist/examples/test-vue2/babel.config.js +14 -0
  12. package/dist/examples/test-vue2/package.json +53 -0
  13. package/dist/examples/test-vue2/pnpm-lock.yaml +8776 -0
  14. package/dist/examples/test-vue2/public/index.html +19 -0
  15. package/dist/examples/test-vue2/setup.js +170 -0
  16. package/dist/examples/test-vue2/src/App.vue +943 -0
  17. package/dist/examples/test-vue2/src/components/BroadcastAPI.vue +666 -0
  18. package/dist/examples/test-vue2/src/components/CameraAPI.vue +414 -0
  19. package/dist/examples/test-vue2/src/components/GlobalConfig.vue +200 -0
  20. package/dist/examples/test-vue2/src/components/InfoCards.vue +294 -0
  21. package/dist/examples/test-vue2/src/components/InitAPI.vue +334 -0
  22. package/dist/examples/test-vue2/src/components/LogPanel.vue +249 -0
  23. package/dist/examples/test-vue2/src/components/MotionControlAPI.vue +400 -0
  24. package/dist/examples/test-vue2/src/components/UnityPreview.vue +201 -0
  25. package/dist/examples/test-vue2/src/main.js +16 -0
  26. package/dist/examples/test-vue2/vue.config.js +41 -0
  27. package/dist/examples/test-vue3/.eslintrc +3 -0
  28. package/dist/examples/test-vue3/.stylelintignore +3 -0
  29. package/dist/examples/test-vue3/.stylelintrc +48 -0
  30. package/dist/examples/test-vue3/README.md +236 -0
  31. package/dist/examples/test-vue3/env.d.ts +8 -0
  32. package/dist/examples/test-vue3/index.html +95 -0
  33. package/dist/examples/test-vue3/package.json +55 -0
  34. package/dist/examples/test-vue3/pnpm-lock.yaml +4636 -0
  35. package/dist/examples/test-vue3/setup.js +167 -0
  36. package/dist/examples/test-vue3/src/App.vue +962 -0
  37. package/dist/examples/test-vue3/src/components/BroadcastAPI.vue +636 -0
  38. package/dist/examples/test-vue3/src/components/CameraAPI.vue +376 -0
  39. package/dist/examples/test-vue3/src/components/GlobalConfig.vue +213 -0
  40. package/dist/examples/test-vue3/src/components/InfoCards.vue +288 -0
  41. package/dist/examples/test-vue3/src/components/InitAPI.vue +339 -0
  42. package/dist/examples/test-vue3/src/components/LogPanel.vue +236 -0
  43. package/dist/examples/test-vue3/src/components/MotionControlAPI.vue +373 -0
  44. package/dist/examples/test-vue3/src/components/UnityPreview.vue +189 -0
  45. package/dist/examples/test-vue3/src/main.ts +12 -0
  46. package/dist/examples/test-vue3/src/types.ts +9 -0
  47. package/dist/examples/test-vue3/tsconfig.json +44 -0
  48. package/dist/examples/test-vue3/tsconfig.node.json +14 -0
  49. package/dist/examples/test-vue3/vite.config.ts +75 -0
  50. package/dist/index.d.ts +142 -132
  51. package/dist/index.es5.js +93 -41
  52. package/dist/index.es5.umd.js +93 -41
  53. package/dist/index.esm.js +101 -42
  54. package/dist/index.umd.cjs +101 -42
  55. package/package.json +4 -3
package/README.md CHANGED
@@ -1,9 +1,5 @@
1
1
  # ZEE 3D Avatar SDK 使用说明
2
2
 
3
-
4
- [![npm version](https://badge.fury.io/js/@zeewain/3d-avatar-sdk.svg)](https://badge.fury.io/js/@zeewain/3d-avatar-sdk)
5
-
6
-
7
3
  ## 🚀 产品概述
8
4
 
9
5
  紫为云3D写真数字人SDK采用多项AI技术实现:
@@ -441,10 +437,12 @@ interface IAvatarSDKConfig {
441
437
  token?: string; // 用户认证令牌
442
438
  env?: 'dev' | 'test' | 'prod' | 'custom'; // 运行环境,默认'prod'
443
439
  apiUrl?: string; // 自定义API地址(env='custom'时需要)
440
+ assetsUrl?:string; // 自定义资源文件地址(env='custom'时有效)
444
441
  resourcesUrl?: string; // AB资源文件地址
445
442
  idleMotionList?:string[]; // 待机动作编码列表,随机播放(排重方式),可选
446
443
  // 回调函数
447
- onProgress?: (progress: number) => void; // 加载进度回调
444
+ onProgress?: (progress: number) => void; // 加载进度回调,可选
445
+ broadcastCallbacks?:IBroadcastCallbacks; // 播报回调函数,可选
448
446
  }
449
447
  ```
450
448
 
@@ -995,6 +993,9 @@ document.addEventListener('visibilitychange', () => {
995
993
  | 2003 | `OperationErrorCode.OPERATION_FAILED` | 操作执行失败 | 检查参数和网络状态 |
996
994
  | 2004 | `OperationErrorCode.OPERATION_TIMEOUT` | 操作超时 | 稍后重试 |
997
995
  | 2005 | `OperationErrorCode.OPERATION_CANCELLED` | 操作被取消 | 重新执行操作 |
996
+ | 2006 | `OperationErrorCode.BROADCAST_EQUITY_NOT_EXIST` | 用户权益额度不存在 | 开通3D交互数字人产品能力权益 |
997
+ | 2007 | `OperationErrorCode.BROADCAST_EQUITY_NOT_ENOUGH` | 用户权益额度不足 | 充值3D交互数字人产品能力权益(如播报次数) |
998
+ | 2008 | `OperationErrorCode.BROADCAST_EQUITY_FREEZE_FAILED` | 用户权益额度冻结失败 | 重新执行操作,若依然失败则联系平台管理员 |
998
999
 
999
1000
  ### 资源错误 (3xxx)
1000
1001
  | 错误码 | 常量名 | 描述 | 处理建议 |