Reputation: 1
Is there any better solution to make video frames fully responsive to the slider when it is dragged?
I'm using below code on slider value changed event, But the frames are not responding as per the slider value.
public void OnProgressBarDownClicked()
{
if (videoPlayer.isPaused)
videoPlayer.time = (float)videoProgressBar.value;
}
Trying to achive Youtube like progess bar.
Upvotes: 0
Views: 369