zoukankan      html  css  js  c++  java
  • Application.LoadLevel & Object.DontDestroyOnLoad

    Application.LoadLevel

      

      只有在File->Build Setting中设置了的按钮才能被加载。

      当level加载完成后,MonoBehaviour.OnLevelWasLoaded is called on all active game objects。

      When loading a new level all game objects that have been loaded before are destroyed. If you want to let an object survive when loading a new level, use Object.DontDestroyOnLoad.

      Calling LoadLevel will update Application.loadedLevel and Application.loadedLevelName

    参考:file://localhost/Applications/Unity/Unity.app/Contents/Documentation/Documentation/ScriptReference/Application.LoadLevel.html

    Object.DontDestroyOnLoad

      When loading a new level all objects in the scene are destroyed, then the objects in the new level are loaded. In order to preserve an object during level loading call DontDestroyOnLoad on it. If the object is a component or game object then its entire transform hierarchy will not be destroyed either.

    参考:file://localhost/Applications/Unity/Unity.app/Contents/Documentation/Documentation/ScriptReference/Object.DontDestroyOnLoad.html

  • 相关阅读:
    linux Segmentation faults 段错误详解
    linux cut
    linux sed
    linux tr
    linux ar
    objdump--反汇编查看
    linux中dd命令
    readelf
    登录后,前端做了哪些工作,如何得知已登录?
    正向代理和反向代理?
  • 原文地址:https://www.cnblogs.com/tekkaman/p/3805671.html
Copyright © 2011-2022 走看看