babylon.videoTexture.d.ts 348 B

12345678910111213
  1. /// <reference path="../../babylon.d.ts" />
  2. declare module BABYLON {
  3. class VideoTexture extends Texture {
  4. constructor(name: string, urls: string[], size: Size2D, scene: Scene, generateMipMaps: boolean);
  5. video: HTMLVideoElement;
  6. _autoLaunch: boolean;
  7. textureSize: Size2D;
  8. _update(): boolean;
  9. }
  10. }