查看: 1276|回复: 0
打印 上一主题 下一主题

关于singleton

[复制链接]

9903

主题

126

听众

7万

积分

首席设计师

Rank: 8Rank: 8

纳金币
53488
精华
316

最佳新人 热心会员 灌水之王 活跃会员 突出贡献 荣誉管理 论坛元老

跳转到指定楼层
楼主
发表于 2013-6-28 07:18:19 |只看该作者 |倒序浏览
using UnityEngine;
using System.Collections;


public class LevelManagerScript : MonoBehaviour {

    private static LevelManagerScript _instance;
    public static LevelManagerScript Instance
    {
        get
        {
            if (!_instance)
            {
                _instance = GameObject.FindObjectOfType(typeof(LevelManagerScript)) as LevelManagerScript;
                if (!_instance)
                {
                    GameObject container = new GameObject();
                    container.name = "LevelManagerScriptSingleton";
                    _instance = container.AddComponent(typeof(LevelManagerScript)) as LevelManagerScript;
                    DontDestroyOnLoad(container);
                }
            }
            return _instance;
        }
    }
}



这段代码怎么转成JS的啊,我就改了他的语法,但是不可用·····
分享到: QQ好友和群QQ好友和群 腾讯微博腾讯微博 腾讯朋友腾讯朋友 微信微信
转播转播0 分享淘帖0 收藏收藏0 支持支持0 反对反对0
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

手机版|纳金网 ( 闽ICP备2021016425号-2/3

GMT+8, 2024-11-13 08:51 , Processed in 0.078210 second(s), 28 queries .

Powered by Discuz!-创意设计 X2.5

© 2008-2019 Narkii Inc.

回顶部