Hey I’m extremely new too unity and game development in general and I was just wondering say if i want to release an update for a game do I need to put any special script or anything in to release the update?
Yes and no
Could you clear up a bit more? What would the process be?
How you update your game can widely differ.
What platform are you talking about?
On iOS and Android you can push a updated app to the app-stores and they will take care of putting i to the users.
For webplayer you just replace the old version of the game on the server and the update is done.
On desktop platform you can just redistribute your game like you published it at first or use a patching application that can create difference patch files for you.
Ok so on PC but, here is my question if I re-distribute and there are peoples saves on the game is there something i would have to do too make them compatible (As I said I am extremely new to coding, unity, and game making in gerneral.)
If you use unity’s playerprefs class for saving user data you wont have any problem on reading the saved data in the new version of your game.
Only if you change the format of your saved data you might get in trouble.