CallGame.cs
using UnityEngine;
using System.Collections;
public class CallGame : MonoBehaviour
{
void Update()
{
if (Input.GetMouseButtonDown(0))
{
Application.LoadLevel("Main");
}
}
}
Go to list of users who liked
More than 5 years have passed since last update.
using UnityEngine;
using System.Collections;
public class CallGame : MonoBehaviour
{
void Update()
{
if (Input.GetMouseButtonDown(0))
{
Application.LoadLevel("Main");
}
}
}
Register as a new user and use Qiita more conveniently
Go to list of users who liked