码迷,mamicode.com
首页 > 编程语言 > 详细

unity 不销毁物体,全局唯一性

时间:2019-12-09 13:57:12      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:iat   lse   debug   mon   oid   style   null   mono   deb   

下面插入代码

本脚本挂在你不想销毁的物体上面

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class ExitApp : MonoBehaviour {
    public static ExitApp instance;

    //全局唯一性  
    private void Awake()
    {
        if (instance != null)
        {
            Debug.Log("严重 : 对象已经存在!");
            DestroyImmediate(gameObject);
        }
        else
        {
            DontDestroyOnLoad(gameObject);
            instance = this;
        }
    }  
  
}

 

unity 不销毁物体,全局唯一性

标签:iat   lse   debug   mon   oid   style   null   mono   deb   

原文地址:https://www.cnblogs.com/qq2351194611/p/12010364.html

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