static
This commit is contained in:
@@ -0,0 +1,86 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<base href="../../../" />
|
||||
<script src="page.js"></script>
|
||||
<link type="text/css" rel="stylesheet" href="page.css" />
|
||||
</head>
|
||||
<body>
|
||||
[page:Loader] →
|
||||
|
||||
<h1>[name]</h1>
|
||||
|
||||
<p class="desc">
|
||||
以JSON格式来加载 [page:AnimationClip AnimationClips] 的一个类。
|
||||
内部使用 [page:FileLoader] 来加载文件。
|
||||
</p>
|
||||
|
||||
<h2>代码示例</h2>
|
||||
|
||||
<code>
|
||||
// 初始化一个加载器
|
||||
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' );
|
||||
}
|
||||
);
|
||||
</code>
|
||||
|
||||
<h2>构造函数</h2>
|
||||
|
||||
<h3>[name]( [param:LoadingManager manager] )</h3>
|
||||
<p>
|
||||
[page:LoadingManager manager] — 加载器所使用的[page:LoadingManager loadingManager]。 默认为[page:LoadingManager THREE.DefaultLoadingManager].<br /><br />
|
||||
|
||||
创建一个新的[name].
|
||||
</p>
|
||||
|
||||
<h2>属性</h2>
|
||||
<p>共有属性请参见其基类[page:Loader]。</p>
|
||||
|
||||
<h2>方法</h2>
|
||||
<p>共有方法请参见其基类[page:Loader]。</p>
|
||||
|
||||
<h3>[method:null load]( [param:String url], [param:Function onLoad], [param:Function onProgress], [param:Function onError] )</h3>
|
||||
<p>
|
||||
[page:String url] — 文件的URL或者路径,也可以为
|
||||
[link:https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs Data URI].<br />
|
||||
[page:Function onLoad] — 加载完成时将调用。回调参数为将要加载的[page:AnimationClip animation clips].<br />
|
||||
[page:Function onProgress] — 将在加载过程中进行调用。参数为XMLHttpRequest实例,实例包含[page:Integer total]和[page:Integer loaded]字节。<br />
|
||||
[page:Function onError] — 在加载错误时被调用。<br /><br />
|
||||
|
||||
从URL中进行加载并将动画传递给onLoad。
|
||||
</p>
|
||||
|
||||
<h3>[method:Array parse]( [param:JSON json] )</h3>
|
||||
<p>
|
||||
[page:JSON json] — 请求 <br /><br />
|
||||
Parse the JSON object and return an array of animation clips. Individual clips in the object will
|
||||
be parsed with [page:AnimationClip.parse].
|
||||
</p>
|
||||
|
||||
<h2>源代码</h2>
|
||||
|
||||
<p>
|
||||
[link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user