User Interface Flashcards

1
Q

Introduction to Audio (between the line)

A

in real life, many things affect the way you perceive sound; the speed of the object, what type of
scenario it is in, and what direction it is coming from.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

AudioSource :

A

The AudioSource component is the primary component that you
will attach to a GameObject to make it play sound. It will play
back an AudioClip when triggered through the mixer, through
code or by default, when it awakes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

AudioListener :

A

An AudioListener is the component that listens to all audio playing in the
scene, and transfers it to the computer’s speakers. It acts like the ears of
the game. All audio you hear is in perspective of the positioning of this
AudioListener. Only one AudioListener should be in a scene for it to
function properly. By default, the main camera has the Listener attached
to it. The Listener doesn’t have any exposed properties that the designer
would want to care about.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

AudioFilters :

A

The output of an AudioSource or intake of an
AudioListener can be modified with the help of
Audio Filters. These are specific components that
can change the reverb, chorus, filtering, and so
on. Each specific filter comes as its own
component with exposed values to tweak how it
sounds.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Anchors :

A

Anchors are points that other entities can “lock” onto in the
Canvas.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Canvas :

A
Canvas Component. 
This is the master component 
that holds a couple of universal 
options as to how the UI is 
drawn.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Render Mode :

A

This property defines the method that is used to

draw the Canvas onto the game’s view

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Screen Space - Overlay :

A

This mode is the most standard for menus, HUDs and so on. It renders UI on top of everything
else in the scene.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Screen Space - Camera :

A

Screen Space - Camera creates an imaginary projection plane, a set distance from the camera,
and projects all UI onto it.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

World Space :

A

In World Space mode, UI elements behave as if they were normal GameObjects placed into the
world.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

The Canvas Scaler :

A

The Canvas Scaler is a set of options that lets you adjust the scale and appearance of the UI
elements in a more definitive way;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly