Fairly new to UE and been playing around with some of the tutorials from the learning area, and various marketplace projects / samples etc. I’m curious why the version compatibility is so strict? Lots of assets / tutorials seem to use slightly different versions (4.25-4.26, then something else is 5.1-5.2, something else 5.0 only etc…). With no option to open or convert to other versions without downloading the full engine for each version.
At this point my HDD is like 150GB just different versions of the engine . Is there really that much backwards incompatibility, even from things like 5.2 to 5.0? Why is it so strict? Any tricks I’m missing here or am I stuck just having to download the right version for every tutorial / asset I want to try?
You can right click a .uproject file and select Switch Engine Version.
This will open a window with a dropdown to select the version you want from all the installed engine versions.
Opening projects in different engine versions other than one the project was last edited in might result in loss of data or compatibility errors. It’s recommended to make a copy of the project before switching engine versions to avoid any loss of data.
U asset files are blobs of stuff - usually byte - and are signed with the engine version.
You could manually hex edit the engine version and then use the file in whatever engine - provided the asset doesn’t contain something the engine changed.
Its basically a security measure to prevent crashes when they do suff like change what a node is called between engine versions.
90% of the time, if you throw the uasset in any engine, it will just work, if you save it it will obviously update.
The times it doesnt the engine will crash.
and if this isnt true for everyone, then I added something to do this in my custom engine build…