- Home /
Changing Version of Game
I would like to change the version of the scene/game I have open in unity, as for I must change it so that I can make it so players of different versions are unable to play together. I know the rest, but I am looking for the scene/project version or what ever it is called.
This should be very app-specific. For instance, you wouldn't want to build one app, let's call it version 1, then fix a bug, build that into version 2, and prevent version 1 from playing with version 2 (or at least that is typically true). If, however, you had modified a key name in the communication between clients in version 2, you would not want version 1 to talk to version 2. But in this case, whether or not you made a change to your schema is dependent on you, so you would need to increment an internal variable in your app every time the schema changed, and use that value to deter$$anonymous$$e if clients were compatible. Is this what you're asking, or did I misunderstand? There's no built-in "version" for scenes or games. The closest thing to that is the version setting that you manually set in Player Settings, and that's even platform-specific.
Somewhat explains it. Well, you did answer my question about is there a version thing for games/scenes.