Home > Software design >  How do you collaborate in Unity?
How do you collaborate in Unity?

Time:04-23

My friend and I want to work on a Unity project together but we do not know-how. How would my friend and I both be able to have access to the files and the project at the same time?

CodePudding user response:

There are various approaches, depending on the team's preferences.

For smaller teams, which is your specific case, I have found Unity's Collaborate quite helpful. And, depending on one's level of expertise, it should be a faster approach to get things up and running.

If you are a student, you may want to consider Unity Student's pack.

This type of questions are related with the Development Operations (DevOps). Here one can read more about Unity's suite of products related to version control (Plastic SCM), automated builds (Cloud Build), and automatic testing (Automated QA).

Additional relevant readings:

CodePudding user response:

I would strongly recommend that you get to grips with Git version control system. This technology is very important in development! Start with Gitlab or Github. Once you understand this you can think about how you want to work together on your Unity project.

I would look at that first before you start with a tool like Unity Collaborate or something similar. It makes more sense to start with Git first in my opinion.

  • Related