标签:des style blog color io sp 数据 div on
using UnityEngine; using System.Collections; using System.Collections.Generic; public class TestSceneData : MonoBehaviour { public string PlayerName = ""; public static TestSceneData Instance; public List<string> m_List = new List<string>(); void Awake() { if (Instance) { Destroy(gameObject); } else { DontDestroyOnLoad(gameObject); Instance = this; } } }
标签:des style blog color io sp 数据 div on
原文地址:http://www.cnblogs.com/123ing/p/4039060.html