Hi!
My game uses video display.
function CreateVideo(X, Y, Width, Height, IsLoop, VideoName)
{
var VideoTexture = CurrentScene.add.video(0, 0, VideoName);
VideoTexture.play(true);
VideoTexture.once('play', () =>
{
VideoTexture.setLoop(IsLoop);
VideoTexture.setOrigin(0, 0);
VideoTexture.setPosition(X, Y);
VideoTexture.setDisplaySize(Width, Height);
});
return VideoTexture;
}
The problem is that the browser’s system player starts to be displayed on the notification panel. How can I solve this?