import { IDisposable } from '../../Interfaces/IDisposable'; import { BaseProceduralTexture } from './BaseProceduralTexture'; export declare class MoveProceduralTexture extends BaseProceduralTexture implements IDisposable { static readonly FRAGMENT_SHADER = "zakeke_MoveProceduralTexture"; static readonly CUSTOM_TYPE = "Zakeke.MoveProceduralTexture"; private _offset; get offset(): BABYLON.Vector2; set offset(value: BABYLON.Vector2); constructor(name: string, size: number, scene: BABYLON.Scene, baseTexture: BABYLON.Texture, fallbackTexture?: BABYLON.Texture, generateMipMaps?: boolean); dispose(): void; updateShaderUniforms(): void; /** * Render the texture to its associated render target. * @param useCameraPostProcess Define if camera post process should be applied to the texture */ render(useCameraPostProcess?: boolean): void; /** * Resize the texture to new value. * @param size Define the new size the texture should have * @param generateMipMaps Define whether the new texture should create mip maps */ resize(size: number, generateMipMaps: boolean): void; }