Check if 360 video is playing or not

Hi! I build a 360 video player, and I want to implement a function which is related to whether the video is playing or not. I only find play() and pause() methods. Is there a way to find out whether the video is playing or not?
Thanks in advance!

you can get access to the video element in the videoDome element:
videoDome.videoTexture.video

Thank you! But does this video element has anything related to the playing or pause status? Or how do I get this status?

the video element provide events:

1 Like

Thank you so much!