|
@@ -31489,6 +31489,7 @@ declare module "babylonjs/Materials/Textures/videoTexture" {
|
|
|
private _settings;
|
|
|
private _createInternalTextureOnEvent;
|
|
|
private _frameId;
|
|
|
+ private _currentSrc;
|
|
|
/**
|
|
|
* Creates a video texture.
|
|
|
* If you want to display a video in your scene, this is the special texture for that.
|
|
@@ -31527,6 +31528,11 @@ declare module "babylonjs/Materials/Textures/videoTexture" {
|
|
|
*/
|
|
|
updateURL(url: string): void;
|
|
|
/**
|
|
|
+ * Clones the texture.
|
|
|
+ * @returns the cloned texture
|
|
|
+ */
|
|
|
+ clone(): VideoTexture;
|
|
|
+ /**
|
|
|
* Dispose the texture and release its associated resources.
|
|
|
*/
|
|
|
dispose(): void;
|
|
@@ -101955,6 +101961,7 @@ declare module BABYLON {
|
|
|
private _settings;
|
|
|
private _createInternalTextureOnEvent;
|
|
|
private _frameId;
|
|
|
+ private _currentSrc;
|
|
|
/**
|
|
|
* Creates a video texture.
|
|
|
* If you want to display a video in your scene, this is the special texture for that.
|
|
@@ -101993,6 +102000,11 @@ declare module BABYLON {
|
|
|
*/
|
|
|
updateURL(url: string): void;
|
|
|
/**
|
|
|
+ * Clones the texture.
|
|
|
+ * @returns the cloned texture
|
|
|
+ */
|
|
|
+ clone(): VideoTexture;
|
|
|
+ /**
|
|
|
* Dispose the texture and release its associated resources.
|
|
|
*/
|
|
|
dispose(): void;
|