Skip to content

Instantly share code, notes, and snippets.

@tsubaki
Created November 6, 2015 16:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tsubaki/c6783abc6999886e6e2d to your computer and use it in GitHub Desktop.
Save tsubaki/c6783abc6999886e6e2d to your computer and use it in GitHub Desktop.
DontDestroyOnloadを使用した例
using UnityEngine;
using System.Collections;
public class LoadScene : MonoBehaviour
{
public int score = 0;
void Awake()
{
score = 30;
DontDestroyOnLoad (gameObject);
}
// click callback
public void OnClick()
{
Application.LoadLevel (1);
}
}
using UnityEngine;
using System.Collections;
public class ReadData : MonoBehaviour
{
void Start ()
{
LoadScene loadScene = FindObjectOfType<LoadScene> ();
Debug.Log (loadScene.score);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment