Questions tagged [version-control]
Version control is the management of changes to code, documentation, assets and other files for a project.
48 questions
3 votes
0 answers
144 views
What would be an artist friendly version control?
I'd like to set up a version control system for an artist I'm working with who is going to be designing a lot of images for a game. My initial thought was Github, but git requires extra setup for ...
0 votes
1 answer
450 views
In Unity editor, how to import package from github?
In the latest Unity editor 2021.3.25f1 LTS, I'm trying to directly import the following package from github: https://github.com/yasirkula/UnityNativeFilePicker/releases/tag/v1.3.0 But when I import ...
3 votes
1 answer
470 views
Trunk Based Development: Prevent unreleased assets and features from being included in the build
Our team is currently working on a live service game (A game that will be updated regularly post-launch) and is using a trunk-based development strategy. The trunk-based development strategy is great. ...
0 votes
1 answer
752 views
where is D3D11.h/lib for direcxt11.3
I'm starting to see how to do multiview rendering from different view in one pass. This needs D3D11_FEATURE_DATA_D3D11_OPTIONS3 to be checked but the D11 sdk 11_0 don't know this flag and after a web ...
0 votes
1 answer
578 views
Should I downgrade my Unity project to the latest LTS version?
I created my Unity project with a 2020 version and now I'm using 2020.2.0f1. Recently, I realized that using the latest LTS version is the best choice for games that are in production or about to ship....
3 votes
0 answers
313 views
How to ignore one unity package in source control
I've just installed the Unity quick search package. This is an editor extension which each developer should choose if they want installed or not. My problem is that because this was added as a package ...
0 votes
0 answers
2k views
How to solve this Git SourceTree conflict?
I have recently joined a amateur studio as the single programmer. The previous programmers have left me the project folder. Upon trying to create a repository and a new remote to have version control ...
0 votes
0 answers
134 views
Storing non-binary, but non-mergable files in Git LFS
Is it acceptable to store files that aren’t binary and diffs between versions are not important in Git LFS? Examples of these files include: .obj .stl .mtl large .csv data dumps etc I know that I can, ...