babylon.grassProceduralTexture.d.ts 442 B

1234567891011121314
  1. declare module BABYLON {
  2. class GrassProceduralTexture extends ProceduralTexture {
  3. private _grassColors;
  4. private _herb1;
  5. private _herb2;
  6. private _herb3;
  7. private _groundColor;
  8. constructor(name: string, size: number, scene: Scene, fallbackTexture?: Texture, generateMipMaps?: boolean);
  9. updateShaderUniforms(): void;
  10. grassColors: Color3[];
  11. groundColor: Color3;
  12. }
  13. }