Load AssetBundle(scene object) after LoadLevel
Hi, all I made two AssetBundle files, one is scene and the other is scene's Object, like following fake code: BuildPipeline.PushAssetDependencies(); { // generate fbx(prefab) AssetBundle...
View ArticleLoad Scene's Object Bundle After Scene(Level) has been Loaded
Hi, all I made two AssetBundle files, one is scene and the other is scene's Object, like following fake code: BuildPipeline.PushAssetDependencies(); { // generate fbx(prefab) AssetBundle...
View ArticleMemory leak with Streaming terrains
I've modified the streaming world example to Work with Unity free on Android basic. It basically uses loadLevelAdditive to load the maps that I've packed into the player, not as AssetBundles. When...
View ArticleIs it possible hide a complete scene or make it invisible? (Scripting)
Hi all, i'm new in Unity and programming but i do my very best :) atm i' m hard working on a game-project and i have a little problem with my menu (and google dont want to help me :D)... I'm using......
View ArticleLoadLevelAdditiveAsync + Lightmap index
Hi guys, I have 2 Levels. A level is a group of scene. A level is loaded using LoadLevelAdditiveAsync() for each scene in the level. When one level is completely loaded, I unload the previous level by...
View ArticleWhat is the state of GameObjects just after they have been loaded through a...
Hi, there is something I misunderstand about Application.LoadLevelAdditive(): If I try to get GameObjects loaded just after a call to this method located in a Start callback, GameObject.Find() returns...
View ArticleGame Level question, instantiate or loadlevel?
I am nearing the final stages of a game I have been working on for a while now and have a question to the veterans here who can point me to a choice of how to handle my levels... The game will have a...
View ArticleLoading a level while pausing the current one?
Hi everyone, So I have a MainScene where I want to interact with an object and load a CarScene and that works, but I am trying to make it so that when you load the CarScene and finish playing it then...
View ArticleIs there a way to load a specific GameObject from another scene?
For my design process I'd like to create each level in a separate scene. However each level relies on global objects (playmakergui, touchscript, other game engine stuff). If I want to see if it works I...
View ArticleGameObject.Find() in additively loaded scenes?
I load a scene at runtime additively with LoadLevelAdditiveAsync. Looks like if - from the level of first scene object - I were unable to access additively loaded scene objects - with use of:...
View ArticlePassing variables to LoadLevelAdditiveAsync
Im currently looking at using LoadLevelAdditiveAsync to improve loading the large tiled city i dynamically generate by streaming the tiles as the player moves around. My idea is to have a single scene...
View ArticleHow to load enlighten lightmaps correctly at runtime?
We are attempting to make a game that will consist of an "endless world" of sections that are loaded at runtime. Each section will be contained in a scene with it's own lightmaps. Currently we are...
View ArticleProblem with LoadLevelAdditive Timing
So I have a little problem which seems to me about the timing of LoadLevelAdditive. I'm instantiating a player object which in its start method instantiates another class that loads some UI from a...
View ArticleLoadLevelAdditive random array
I'd like to know how to load all my scenes at ones but randomly each time, and everytime it loads i need my character and camera to be created in the 1st scene(which always is different) any ideas?
View ArticleLight Maps / LoadLevelAdditive / Prefab
My game needs the ability to load rooms from either load level additive or better prefabs. I need to use the light mapping features. Once I attempt to load level additive a disabled level or prefab so...
View ArticleDisabling occlusion culling
I'm using LoadLevelAdditiveAsync to transition from one scene to the next with the new scene in the same location as the old one and the old one being deleted. The problem is that the old occlusion...
View ArticleSplit-screen for a large world
As a follow-up to this question: http://answers.unity3d.com/questions/959788/how-do-i-display-two-scenes-at-once.html I now have 8 scenes with the same world and different agents. Now if I use...
View ArticleCorrect use of Application.UnloadLevel ?
I'm trying to use the newly added Application.UnloadLevel to unload an existing scene after loading a new one in additively in Unity 5.2 but keep getting the error: *Unloading the first loaded scene...
View ArticleIntermittent crash on LoadLevelAdditive, and LoadLevelAdditiveAsync
I am experiencing an intermittent crash when loading certain levels in my project. It happens during an additive load, and I have reproduced it using both LoadLevelAdditive, and LoadLevelAdditiveAsync....
View ArticleNetworking Aplication.LoadLevelAdditive Network Identity
**[General Information]** I've begun upgrading my Unity 4 project to Unity 5.2.1f1 Personal, mainly replacing the old Network Views with the new Network Identity's and the like. The game randomly...
View ArticleHow To Load Next Scene in Unity 5.3 Version without Destroying any GameObject?
Hello Everyone in Unity community! Im new to unity. i have used a little bit unity version 4.5 before but now im going to use unity Version 5.3. its changed. well how can i load a scene over another...
View ArticleHelp with dynamic loading or occlusion culling in scenes on 2D metroidvania?
Hi everyone, I'm trying to do an adventure game (metroidvania), with fixed camera angles, and the map is reaaaaally huge. I already heard about `Application.LoadLevelAdditive`and `occlusion culling`...
View ArticleLoad Level Additive tutorial problem
Basically, in the [Creating a Scene Selection][1] UI tutorial, they show how to add one scene to another without destroying anything in either scene by using Application.LoadLevelAdditive. However,...
View Articledeleting previous scene in transitional room
im using a transitional room set to "dont destroy on load" with one open door and one closed door. when the player enters through the open door, it starts to close and the next scene will be loaded...
View ArticleCan Unity 5.5 load Occlusion Culling additively?
Since the release of 5.5 Unity is supposedly supporting multi-scene occlusion culling. Does it mean it is possible to use LoadLevelAdditiveAsync to load level with baked occlusion data? I tried baking...
View ArticleWhat is the standard solution for preserving level data?
I've found different answers to how you might preserve data on gameobjects without resetting it when loading a new scene, such as DontDestroyOnLoad, PlayerPrefs, LoadLevelAdditive or even just using...
View ArticleRenderSettings not overwritten when using LoadLevelAdditive
My TPS-game contains several Scenes besides the menu that have different maps. Each scene has its own environment, enemies and Render/LightSettings. For buildsize reasons and faster developing I use a...
View ArticleHow do I trigger a function right after a additive scene ends?
My game is a 2d top down RPG which has a house as its main game scene (loaded as Single). The player has multiple minigames( these minigames are the additive scenes that i am asking about) around the...
View ArticleLight probs in additive loading
Greetings Do you know if the light probs will be working on additive scene in the alpha 2019.3.X or later? Or do you have a road map for the integration of this feature? Me and my team are looking...
View ArticleNeed advice on the best way to load new rooms when a player interacts with...
I'm working on a game based on the board game (basically copying) Betrayal at House on the Hill (now I understand there are legal implications don't worry im not selling the game or giving it away to...
View Article