فهرست منبع

Ground color setter missed underscore

Tero 7 سال پیش
والد
کامیت
b23a84e983
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      proceduralTexturesLibrary/src/grass/babylon.grassProceduralTexture.ts

+ 2 - 2
proceduralTexturesLibrary/src/grass/babylon.grassProceduralTexture.ts

@@ -38,8 +38,8 @@ module BABYLON {
         }
 
         public set groundColor(value: Color3) {
-            this.groundColor = value;
+            this._groundColor = value;
             this.updateShaderUniforms();
         }
     }
-}
+}