Asset Management Flashcards
Match the following options to their descriptions. 1. Force To Mono 2. Preload Audio Data 3. Normalize 4. Load In Background A. Ensures consistent volume on single channel. B. Mixes down to a single channel. C. Start load the clip at level start. D. Finish loading the level regardless of the clips load state.
1B, 2C, 3A, 4D
Rank the memory usage of the following decompression options (highest to lowest). A. Compressed In Memory with Vorbis B. Decompress On Load C. Streaming D. Compressed In Memory with PCM
1B, 2D, 3A, 4C
Select the correct description for the “Streaming” audio clip option.
Load from disk into a memory buffer while playing.
Which of the following are primitive objects that unity supports?
Cubes, quads, spheres.
What does C# scripting allow us to do in Unity?
Define more complex behaviors.
How do shader scripts differ from C# or JavaScripts?
Shaders run on the GPU whereas the others run on CPU.
Which proprietary file formats are supported for model import in Unity?
Max, Maya, SketchUp, Blender, Cinema4D, Modo, Lightwave & Cheetah3D
What is an advantage of using an export file format?
The file size will be smaller.
What is one advantage of using a proprietary format?
Faster iteration in development.
What does an FBX file import?
Meshes, Blend Shapes, and Smoothing groups.
What is a scene in Unity?
A snapshot of a hierarhy with GameObjects, Prefabs and their components and properties.
What is Unity’s limit on the number of scenes that can be open at one time?
As many as you have memory available.
Explain the purpose of the “Scenes in Build”.
Dictates which scenes should be included in the final game and which is the first to be displayed.
Select the correct Texture Type for a 2D character in a game.
Sprite
Match the slice method to the best time to use it. 1. Manual selection 2. Automatic 3. Grid By Cell Size 4. Grid By Cell Count A. When there are clear gaps. B. When there are no clear gaps. C. When the Sprites are regular and of known number. D. When the Sprites are regular and of known pixel width.
1B, 2A, 3D, 4C