Hi,
I have created a short video wich appears allways you start the game.
But its a little problem here: mabey not everyone qould like to see it, so i would like to give it a function, that if the user click on the video, it skips and the next scene loads.
ive tried this sript put to Canvas, but it didnt work
using UnityEngine;
using System.Collections;
public class skip : MonoBehaviour
{
void onMouseDown()
{
Application.LoadLevel("FirstMenu");
}
}
can you please help me?