public VideoPlayer VideoPlayer; // Drag & Drop the GameObject holding the VideoPlayer component
void Start()
{
VideoPlayer.loopPointReached += nextFunction;
}
void nextFunction()
{
//your action
}
0 Comments