I have the following code, taken from a Unity script to play video:
public delegate void VideoEnd();
public VideoEnd OnEnd;
Then, when a video ends, the following event is generated:
if (OnEnd != null)
OnEnd();
What I need, is (not...
asked on
13.03.2017 / 17:13