scene-loader
scene-loader copied to clipboard
A package that standardizes scene loading operations between the Unity Scene Manager and Addressables, allowing multiple alternatives of awaiting such as Coroutines, Async or UniTask.
Unity 2023.1 introduced the new [Awaitables API](https://docs.unity3d.com/2023.2/Documentation/Manual/AwaitSupport.html) for better async development in the engine.
Hey João, The bug I posted is now fixed and works fine. Thanks. Another issue, I think. The code is super simple. I use 'new AdvancedSceneManager(addLoadedScenes: true);' So, I have...
Since version `3.0.0`, the scene loaders have been very stripped down in functionality. The transition method can easily be migrated to the scene manager, and the entire usage can be...
Add support for publishing the package to the Unity Asset Store.
None of the runtime scripts derive from Monobehaviour. Can't even attach them to my game objects? How about some example scenes to get us set up?
At the current version (3.0.x), to unload a scene you need to either use a direct `LoadSceneInfoScene` with the target scene reference, or the same `ILoadSceneInfo` that loaded it in...
### Summary LoadingBehaviour can have a delayed end, but there is no way to know when the delay actually ended ### Problem or Use Case If you want to animate...
### Summary A way to transition to a copy of the current scene. ### Problem or Use Case Very useful for "restarting a level". Having a single button that no...