Unity场景加载完成回调

Wesley13
• 阅读 940
using UnityEngine;
using UnityEngine.SceneManagement;


public class Example : MonoBehaviour
{
    void Start()
    {
        SceneManager.LoadScene("sceneName");
        SceneManager.sceneLoaded += CallBack;
    }

    public void CallBack(Scene scene, LoadSceneMode sceneType)
    {
        Debug.Log(scene.name + "is load complete!");
    }
}
点赞
收藏
评论区
推荐文章
blmius blmius
3年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
待兔 待兔
3个月前
手写Java HashMap源码
HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22
Wesley13 Wesley13
3年前
Unity XLua 官方案例学习
1\.Helloworld1usingUnityEngine;2usingXLua;34publicclassHelloworld:MonoBehaviour{5//Usethisforinitialization
Stella981 Stella981
3年前
Android So动态加载 优雅实现与原理分析
背景:漫品Android客户端集成适配转换功能(基于目标识别(So库35M)和人脸识别库(5M)),导致apk体积50M左右,为优化客户端体验,决定实现So文件动态加载.!(https://oscimg.oschina.net/oscnet/00d1ff90e4b34869664fef59e3ec3fdd20b.png)点击上方“蓝字”关注我
Wesley13 Wesley13
3年前
001,LuaFramework基本流程
启动顺序1.Main.cs绑定到场景的一个组件上publicclassMain:MonoBehaviour{voidStart(){AppFacade.Instance.StartUp();//启动游戏
Wesley13 Wesley13
3年前
Unity跳转场景
Unity中如何加载场景1、首先需要将场景添加到BuildSettings中,如下图:!(https://oscimg.oschina.net/oscnet/4268f2c3b1095a8a075b0d2c56a6af6a716.png)2、引用usingUnityEngine.SceneManagement;
Wesley13 Wesley13
3年前
unity中加载下一个场景且不销毁当前场景的方法
1.usingSystem.Collections;usingSystem.Collections.Generic;usingUnityEngine;usingUnityEngine.UI;usingUnityEngine.SceneManagement;publicclas
Wesley13 Wesley13
3年前
Unity 获取场景中所有目标对象(包括不激活的对象)
usingUnityEngine;usingUnityEditor;usingSystem.Collections.Generic;publicclassExampleScript:MonoBehaviour{//获取场景中所有目标对象(包括不激活的对象)不包括Pre
Stella981 Stella981
3年前
DoTween的用法
usingUnityEngine;usingSystem.Collections;usingDG.Tweening;usingUnityEngine.UI;publicclassTestDoTween:MonoBehaviour{intnumber0;//Usethisforinitia
Wesley13 Wesley13
3年前
Unity打包PC端各种屏幕适配,无边框,最小化,显示可拖拽部分
usingUnityEngine;usingSystem.Collections;usingUnityEngine.EventSystems;//usingUnityEngine.SceneManagement;usingSystem;usingUnityEngine.UI;us