Hi everyone,
I’m exploring the possibility of setting up an efficient pipeline in Unreal Engine where the Editor launches quickly—without spending time loading thousands of assets, compiling shaders, etc.
The idea is to structure the Content folder with a dedicated subfolder (e.g., Assets/
) that contains all common Static Meshes, Blueprints, Materials, etc. However, these assets should not be loaded or compiled during Editor startup.
Ideally, the Editor should always open with an empty level. Artists can then build their scenes by dragging assets from the shared Assets/
folder. An asset would only be loaded and compiled when it is actually placed in the level.
Once the artist finishes their work and closes the Editor, the next person who opens Unreal should also experience a fast startup—loading only the assets used in the current level, rather than the entire asset library.
Is this workflow possible? If so, how would you recommend setting it up?
Thanks in advance for any suggestions!