Hi. I made an elevator for the transition between the levels. How do I make this transition invisible to the player? so far, I have implemented the code simply through open level by name. I am a beginner and I will be glad if you help me.
You will need to use level streaming. (More than one level can be loaded at once.)
Make the elevator be its own level, and load the first level as well.
Then, when the user enters the elevator, you un-stream the first level, and strem in the second level.
Level Streaming in Unreal Engine | Unreal Engine 5.3 Documentation
and also:
Loading and Unloading Levels using Blueprints in Unreal Engine | Unreal Engine 5.3 Documentation
2 Likes