You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (AdditiveScenesLoader.TryGetLoadedScene(sceneName, out var scene))
{
var sceneManager = FindMonoTypeOnSceneRoot<T>(scene);
var sceneDelegate = FindMonoTypeOnSceneRoot<ISceneDelegate>(scene);
sceneDelegate?.DeactivateScene(() =>
{
onComplete?.Invoke(sceneManager);
});
}
else
{
throw new InvalidOperationException($"{nameof(SceneLoadService)} can not deactivate {sceneName} scene, because it wasn't loaded. ");
}
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: