码迷,mamicode.com
首页 > 其他好文 > 详细

场景数据传递

时间:2014-10-20 23:19:59      阅读:192      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!