17 lines
365 B
C#
Executable File
17 lines
365 B
C#
Executable File
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.SceneManagement;
|
|
|
|
public class GotoSampleScene : MonoBehaviour {
|
|
|
|
// Use this for initialization
|
|
IEnumerator Start () {
|
|
yield return new WaitForSeconds (3f);
|
|
Application.LoadLevel(1);
|
|
// SceneManager.LoadScene ("TW_AdsSampleScene");
|
|
}
|
|
|
|
|
|
}
|