What is a technique for optimizing Unity UI elements?
Answer & Explanation
Correct Answer: Group static UI elements on one canvas, and dynamic elements on a separate canvas
Note: This Question is unanswered, help us to find answer for this one
For the OnTriggerEnter function to invoke successfully on a collision between two objects, at least one must have which two components?
Answer & Explanation
Correct Answer: A Rigidbody and a Collider
Note: This Question is unanswered, help us to find answer for this one
What does the Microphone class save captured audio data as?
Answer & Explanation
Correct Answer: An audio clip asset
Note: This Question is unanswered, help us to find answer for this one
How does the Range C# attribute control the interaction behavior of numerical variables in the Object Inspector?
Answer & Explanation
Correct Answer: It restricts the variable value using a slider widget
Note: This Question is unanswered, help us to find answer for this one
You are making a game where you need to execute your own functions in response to critical animation events for a rigged character. Specifically, there are two events you must handle: when an animation state is entered and when it is exited in the Animator graph. Which class may be used to invoke your code when those two events happen?
Answer & Explanation
Correct Answer: StateMachineBehaviour
Note: This Question is unanswered, help us to find answer for this one
How can you call methods in C# scripts from unityscript code?
Answer & Explanation
Correct Answer: Place both scripts into the Plugins or Standard Assets folders of the project
Note: This Question is unanswered, help us to find answer for this one
The occlusion map of a material is often a grayscale image with pixels ranging between black and white. What does this map contribute to an object’s material?
Answer & Explanation
Correct Answer: White pixels receive full indirect illumination and black pixels receive none
Note: This Question is unanswered, help us to find answer for this one
Unity scenes may be saved entirely in the YAML format. Why might you do this?
Answer & Explanation
Correct Answer: To externally parse a scene and its objects
Note: This Question is unanswered, help us to find answer for this one
What does the Destroy function do?
Answer & Explanation
Correct Answer: It deletes the specified game object after the current update loop
Note: This Question is unanswered, help us to find answer for this one
Orthographic cameras remove which visual effect?
Answer & Explanation
Correct Answer: Foreshortening
Note: This Question is unanswered, help us to find answer for this one