| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- module BABYLON {
- export class VideoTexture extends Texture {
- public video: HTMLVideoElement;
- private _autoLaunch = true;
- private _lastUpdate: number;
- constructor(name: string, urls: string[], size: any, scene: Scene, generateMipMaps: boolean, invertY: boolean, samplingMode: number = Texture.TRILINEAR_SAMPLINGMODE) {
- super(null, scene, !generateMipMaps, invertY);
- this.name = name;
- this.wrapU = BABYLON.Texture.WRAP_ADDRESSMODE;
- this.wrapV = BABYLON.Texture.WRAP_ADDRESSMODE;
- var requiredWidth = size.width || size;
- var requiredHeight = size.height || size;
- this._texture = scene.getEngine().createDynamicTexture(requiredWidth, requiredHeight, generateMipMaps, samplingMode);
- var textureSize = this.getSize();
- this.video = document.createElement("video");
- this.video.width = textureSize.width;
- this.video.height = textureSize.height;
- this.video.autoplay = false;
- this.video.loop = true;
- this.video.addEventListener("canplaythrough", () => {
- if (this._texture) {
- this._texture.isReady = true;
- }
- });
- urls.forEach(url => {
- //Backwards-compatibility for typescript 1. from 1.3 it should say "SOURCE". see here - https://github.com/Microsoft/TypeScript/issues/1850
- var source = <HTMLSourceElement> document.createElement("source");
- source.src = url;
- this.video.appendChild(source);
- });
- this._lastUpdate = Tools.Now;
- }
- public update(): boolean {
- if (this._autoLaunch) {
- this._autoLaunch = false;
- this.video.play();
- }
- var now = Tools.Now;
- if (now - this._lastUpdate < 15) {
- return false;
- }
- this._lastUpdate = now;
- this.getScene().getEngine().updateVideoTexture(this._texture, this.video, this._invertY);
- return true;
- }
- }
- }
|