David "Blackmagic" Elahee пре 10 година
родитељ
комит
568d15b602
1 измењених фајлова са 4 додато и 1 уклоњено
  1. 4 1
      h3d/prim/Quads.hx

+ 4 - 1
h3d/prim/Quads.hx

@@ -21,6 +21,9 @@ class Quads extends Primitive {
 		}
 		}
 	}
 	}
 
 
+	/**
+	* Warning : This will splice four basic uv value but can provoke aliasing problems.
+	*/
 	public function addTCoords() {
 	public function addTCoords() {
 		uvs = [];
 		uvs = [];
 		var a = new UV(0, 1);
 		var a = new UV(0, 1);
@@ -76,4 +79,4 @@ class Quads extends Primitive {
 		engine.renderQuadBuffer(buffer);
 		engine.renderQuadBuffer(buffer);
 	}
 	}
 
 
-}
+}