Pārlūkot izejas kodu

Added HTMLExporter.

Mr.doob 12 gadi atpakaļ
vecāks
revīzija
96e7cf6c1f
1 mainītis faili ar 17 papildinājumiem un 0 dzēšanām
  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;
+
+	}
+
+}