6
votes
How can I make an update patch for a Unity game on Windows?
Specifically for Unity, you're correct that AssetBundles cannot update script code. You can use bundles for updating data, but any actual code changes will require a new version of the main game .exe ...
1
vote
How to release a new level without having to publish a new version
When your levels are defined in sourcecode, then you can't add more levels without releasing a new version of the complete game build. So instead of hardcoding your level setups, move the layout of ...
1
vote
How can I maintain saved game backward compatibility?
A great method in my experience is through Event Sourcing.
There is lots of great, explanatory material on it, but in short:
You give each savefile a version number
when changes are made to the ...
Only top scored, non community-wiki answers of a minimum length are eligible
Related Tags
patching × 21deployment × 5
unity × 4
multiplayer × 2
ios × 2
user-experience × 2
game-recording × 2
xna × 1
android × 1
networking × 1
software-engineering × 1
gamemaker × 1
mmo × 1
assets × 1
windows × 1
data-structure × 1
modding × 1
simulations × 1
savegame × 1
unity-networking × 1
levels × 1
online × 1
video × 1
console × 1
pipeline × 1