Explorar o código

Merge pull request #512 from jbousquie/fix.comment.freezeNormals

added freeze/unfreezeNormals comments
Raanan Weber %!s(int64=10) %!d(string=hai) anos
pai
achega
7ab5c20625
Modificáronse 1 ficheiros con 2 adicións e 0 borrados
  1. 2 0
      Babylon/Mesh/babylon.mesh.ts

+ 2 - 0
Babylon/Mesh/babylon.mesh.ts

@@ -323,10 +323,12 @@
             return this._areNormalsFrozen;
         }
 
+        /**  This function affects parametric shapes on update only : ribbons, tubes, etc. It has no effect at all on other shapes */
         public freezeNormals(): void {
             this._areNormalsFrozen = true;
         }
 
+        /**  This function affects parametric shapes on update only : ribbons, tubes, etc. It has no effect at all on other shapes */
         public unfreezeNormals(): void {
             this._areNormalsFrozen = false;
         }