Browse Source

doc update

David "Blackmagic" Elahee 10 years ago
parent
commit
568d15b602
1 changed files with 4 additions and 1 deletions
  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() {
 		uvs = [];
 		var a = new UV(0, 1);
@@ -76,4 +79,4 @@ class Quads extends Primitive {
 		engine.renderQuadBuffer(buffer);
 	}
 
-}
+}