diff --git a/src/core/textures/VideoBaseTexture.js b/src/core/textures/VideoBaseTexture.js index 35e6ab0..1340d96 100644 --- a/src/core/textures/VideoBaseTexture.js +++ b/src/core/textures/VideoBaseTexture.js @@ -95,6 +95,12 @@ */ VideoBaseTexture.prototype._onPlayStart = function () { + // Just in case the video has not recieved its can play even yet.. + if(!this.hasLoaded) + { + this._onCanPlay(); + } + if (!this.autoUpdate) { window.requestAnimationFrame(this._onUpdate);