Search Unity

  1. Megacity Metro Demo now available. Download now.
    Dismiss Notice
  2. Unity support for visionOS is now available. Learn more in our blog post.
    Dismiss Notice

Sharing Projects

Discussion in 'Multiplayer' started by dadimartino, Apr 4, 2019.

  1. dadimartino

    dadimartino

    Joined:
    Mar 13, 2019
    Posts:
    9
    Hi!

    I was wondering if there was a way to share a project with multiple people while not using the same Unity Account. If anybody could help I would appreciate it.


    Thanks!
     
  2. Joe-Censored

    Joe-Censored

    Joined:
    Mar 26, 2013
    Posts:
    11,847
    It is called "version control", AKA source control. GIT seems the most popular right now, but there are others. You can set up an in house server for it or use an online provider (some for free for small projects).

    These systems allow multiple people to independently work on the same project, when ready they commit their changes, and other users can get those changes as needed. There is also functionality for resolving conflicting changes, but generally it is a good idea to make others aware of what exactly you are working on to reduce the likelihood of causing problems for each other.
     
    dadimartino, Munchy2007 and TwoTen like this.
  3. dadimartino

    dadimartino

    Joined:
    Mar 13, 2019
    Posts:
    9
    Thank You!