Skip to main content
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 ...
Sean Middleditch's user avatar
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 ...
Philipp's user avatar
  • 123k
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 ...
Instinct's user avatar
  • 111

Only top scored, non community-wiki answers of a minimum length are eligible