How to use GDevelop as a team (multiple developers or teammates)
Enable multiple files mode
As a team of multiple developers, you probably want to activate the option to save the project as multiple files in a folder (in the project properties). This will save the scenes, external layouts, external events and extensions in different files.
Organize then your project to ensure that as many things as possible can be saved in these different files:
- Make sure to separate your scene events into external events for a good organization.
- Try if possible to make your events into custom extension actions/conditions or custom behaviors.
- Use external layouts for the levels (load them with a scene that serves as the main game scene).
Split your game functionalities
External Events, External Layouts and Functions/Behaviors allow better organisation and flexibility in your project. With multiple files enabled, they will be saved to separate files, making developers able to work on different parts of the game at the same time, with less chance of conflict.
Handling shared project files
You then have multiple solutions to work with these multiple files:
- Ideally, if you know a bit about version control like git, mercurial or subversion (a.k.a "svn"), it's strongly recommended to use it. A version control system allows you to inspect changes you made on the files (and even only select some to share), then “push” these changes in a common repository.
- Otherwise, you can have a Dropbox/OneDrive/Cloud storage service where you have a “master project” folder. You create a copy of this folder when starting to work. Then you can periodically copy files back to this master project when you're done with some work on a level.
- If using Dropbox, OneDrive, or something like Google Drive, ensure that they are not actively monitoring the project folder. The way these systems sync files constantly can cause file corruption in the project json file, and prevent bundled tools like Piskel from working correctly.