jacobdufault / fullinspector

Full Inspector supercharges Unity's inspector
MIT License
111 stars 27 forks source link

Question: Should the 'generated' folder be checked into version control? #178

Closed hymerman closed 7 years ago

hymerman commented 7 years ago

Currently everyone on my team is constantly editing fiBackupStorage and fiPersistentEditorStorage, which means they have to be careful not to check in changes to these files else there may be conflicts. It looks like these can be ignored safely. Can the generated source also be ignored? At what point does it get generated? Will a command line batch build succeed if the generated source doesn't exist before Unity is invoked?

jacobdufault commented 7 years ago

Some of the generated files are needed for Unity to serialize assets properly. All of the cs files should be checked in, but none of the prefabs or scriptable objects.

hymerman commented 7 years ago

Great - thanks :)