forked from mrdoob/three.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<script src="../../list.js"></script> | ||
<script src="../../page.js"></script> | ||
<link type="text/css" rel="stylesheet" href="../../page.css" /> | ||
</head> | ||
<body> | ||
<h1>[name]</h1> | ||
|
||
<div class="desc">A loader for loading a geometry out of a JSON file.</div> | ||
<div class="desc">Unlike other loaders, this one emits events instead of using predefined callbacks. So if you're interested in getting notified when <em>things</em> happen, you need to add listeners to the object.</div> | ||
<div class="desc">Possible events:<br /> | ||
<ul> | ||
<li>type: error, message: error message</li> | ||
<li>type: load, content: loaded geometry</li> | ||
</ul> | ||
</div> | ||
|
||
<h2>Constructor</h2> | ||
|
||
<h3>[name]()</h3> | ||
|
||
<h2>Methods</h2> | ||
|
||
<h3>.load( [page:String url] )</h3> | ||
<div> | ||
url — required | ||
</div> | ||
|
||
<div class="desc">Begin loading from <em>url</em></div> | ||
|
||
|
||
<h2>Source</h2> | ||
|
||
[link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js] | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters