I am using a video object in my project but I am only able to include some controls but not a time bar to showing the video progress. Is it possible? If so, how can I do this? Thanks.
Develop games in your browser. Powerful, performant & highly capable.
You have access to the video.duration and video.playbacktime expressions.
So you can use video.playbacktime/video.duration to get the % progress, to represent visually as you wish.
Thanks for replying oosyrag
I saw these expressions but I didn't any tutorial about them. I will try to implement the time bar using these expressions.