返回介绍

手册

参考

示例

开发者参考

AnimationLoader

发布于 2021-07-10 14:14:17 字数 2101 浏览 1062 评论 0 收藏 0

以JSON格式来加载 AnimationClips 的一个类。 内部使用 FileLoader 来加载文件。

代码示例

// 初始化一个加载器
const loader = new THREE.AnimationLoader();
// 加载资源
loader.load(
  // 资源URL
  'animations/animation.js',
  // onLoad回调
  function ( animations ) {
    // animations时一个AnimationClips组数
  },
  // onProgress回调
  function ( xhr ) {
    console.log( (xhr.loaded / xhr.total * 100) + '% loaded' );
  },
  // onError回调
  function ( err ) {
    console.log( 'An error happened' );
  }
);

构造函数

AnimationLoader( manager : LoadingManager )

manager — 加载器所使用的loadingManager。 默认为THREE.DefaultLoadingManager.

创建一个新的AnimationLoader.

属性

共有属性请参见其基类Loader

方法

共有方法请参见其基类Loader

.load ( url : String, onLoad : Function, onProgress : Function, onError : Function ) : null

url — 文件的URL或者路径,也可以为 Data URI.
onLoad — 加载完成时将调用。回调参数为将要加载的animation clips.
onProgress — 将在加载过程中进行调用。参数为XMLHttpRequest实例,实例包含totalloaded字节。
onError — 在加载错误时被调用。

从URL中进行加载并将动画传递给onLoad。

.parse ( json : JSON ) : Array

json — 请求

Parse the JSON object and return an array of animation clips. Individual clips in the object will be parsed with AnimationClip.parse.

源代码

src/loaders/AnimationLoader.js

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文