소스 검색

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;
+
+	}
+
+}