浏览代码

Added HTMLExporter.

Mr.doob 12 年之前
父节点
当前提交
96e7cf6c1f
共有 1 个文件被更改,包括 17 次插入0 次删除
  1. 17 0
      examples/js/exporters/HTMLExporter.js

+ 17 - 0
examples/js/exporters/HTMLExporter.js

@@ -0,0 +1,17 @@
+/**
+ * @author mrdoob / http://mrdoob.com/
+ */
+
+THREE.HTMLExporter = function () {};
+
+THREE.HTMLExporter.prototype = {
+
+	constructor: THREE.HTMLExporter,
+
+	parse: function ( scene ) {
+
+		return output;
+
+	}
+
+}