- What would be the best way for a UI menu system to be worked on from a programmer's perspective, but at the same time doesn't interfere with an artist working on the same workflow?
A) Make it so that each UI component has its own class so that any art changes won't affect either outcome.
B) Give each UI component a separate material so that any changes in the code will be isolated.
C) Use prefabs for each UI component so that any artist can modify them individually.
D) Have a separate script that sweeps through all UI components to check any changes that are made so that they're known to everyone.
- When using Unity's own Version Control Collaborate, which of the following can be excluded using the .collabignore file?
A) Assets
B) Editor
C) MetaData from the Library folder
D) Any file or folder made outside of the Unity Project
- An Image...