0
0
Unityframework~5 mins

Audio mixer in Unity - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is an Audio Mixer in Unity?
An Audio Mixer in Unity is a tool that lets you control and combine multiple audio sources. It helps you adjust volume, apply effects, and manage audio groups easily.
Click to reveal answer
beginner
How do you create an Audio Mixer in Unity?
You create an Audio Mixer by going to the Project window, right-clicking, selecting Create > Audio Mixer. Then you can open it to add groups and effects.
Click to reveal answer
beginner
What is an Audio Mixer Group?
An Audio Mixer Group is a channel inside the Audio Mixer where you route audio sources. You can control volume and effects for all sounds in that group together.
Click to reveal answer
intermediate
How can you change the volume of an Audio Mixer Group via script?
Use the AudioMixer.SetFloat method with the exposed parameter name for volume. For example: audioMixer.SetFloat("MusicVolume", -20f); sets the volume in decibels.
Click to reveal answer
intermediate
Why use exposed parameters in an Audio Mixer?
Exposed parameters let you control Audio Mixer settings like volume or effects from scripts or UI sliders, making audio dynamic and interactive.
Click to reveal answer
What does an Audio Mixer Group do in Unity?
ACreates 3D models for audio visualization
BRoutes and controls multiple audio sources together
CStores audio files in the project
DCompiles scripts for audio playback
How do you expose a parameter in an Audio Mixer for scripting?
AUse the AudioSource component
BDrag the parameter into the scene
CRight-click the parameter and select 'Expose to script'
DCreate a new AudioClip
Which method changes an Audio Mixer parameter value in code?
AAudioListener.SetVolume
BAudioSource.Play
CAudioClip.Load
DAudioMixer.SetFloat
What unit is used for volume in Audio Mixer parameters?
ADecibels (dB)
BPercentage (%)
CHertz (Hz)
DSeconds (s)
Why use an Audio Mixer instead of controlling AudioSource volume directly?
ATo manage multiple sounds together and apply effects easily
BTo speed up script compilation
CTo create 3D sound effects automatically
DTo export audio files
Explain how an Audio Mixer helps manage game sounds in Unity.
Think about how you control many sounds at once and change their loudness or effects.
You got /4 concepts.
    Describe the steps to change music volume using an Audio Mixer and script in Unity.
    Start from making the mixer, then make the volume adjustable from code.
    You got /4 concepts.