using UnityEngine;
using System.Collections;
using UnityEngine.SceneManagement;
public class GameStart : MonoBehaviour {
public string SceneName;
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
}
public void StartGame() {
SceneManager.LoadScene (SceneName);
}
}
'TA > Unity' 카테고리의 다른 글
객체의 자식을 찾을 떄, 객체를 자식으로 넣을때.. (0) | 2015.07.12 |
---|---|
카메라 이동 영역 제한을 위한 방법(4개 포지션) (0) | 2013.10.25 |
VSync - WaitForTargetFPS (0) | 2013.09.27 |
유니티 NGUI 논리 해상도와 픽셀 퍼펙트 (0) | 2013.09.11 |
unity 에디터 확장 (2) | 2013.09.11 |