Loop mp4 file

Hi there,

This is probably a simple question but I can’t figure it out.

I have placed an mp4 file on a plane and it plays when the experience begins.

How do I continually loop this mp4 file?

Thanks,
A

Hi,
is very simple, when the mp4 file is finished you can restart it:

symbol. YOURVIDEO. on(“finish”, () => {
// Runs when finish occurs on YOURVIDEO
YOURVIDEO.restart();

});

Hope this helps :wink:

Hi Marco,

Thanks for getting back to me on this. Much appreciated!

Will have a go now.

Alex