Unity User Interface

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/41

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

42 Terms

1
New cards

Unity UI

developing user interfaces for games and applications.

2
New cards

canvas

area that all UI elements should be inside

3
New cards

Creating a new UI

GameObject > UI > Image

4
New cards

EventSystem

object to help the Messaging System

5
New cards

Render Mode

setting which can be used to make it render in screen space or world space

6
New cards

Screen Space - Overlay

places UI elements on the screen rendered on top of the scene. If the screen is resized or changes resolution, the Canvas will automatically change size to match this

7
New cards

Screen Space - Camera

the Canvas is placed a given distance in front of a specified Camera.

8
New cards

Field of VIew

controls the amount of perspective distortion

9
New cards

World Space

Canvas will behave as any other object in the scene. meant to be a part of the world. "diegetic interface"

10
New cards

Rect Tool

Manipulates UI element rectangles in the Scene View

  • move, resize and rotate UI elements

11
New cards

Rect Transform

new transform component that is used for all UI elements instead of the regular Transform component

12
New cards

Pivot

Rotations, size, and scale modifications occur around the pivot so the position of the pivot affects the outcome of a rotation, resizing, or scaling

13
New cards

Anchors

shown as four small triangular handles in the Scene View and anchor information is also shown in the Inspector.

14
New cards

Anchor Preset

can be found in the upper left corner of the Rect Transform component. Clicking the button brings up the Anchor Presets dropdown.

15
New cards

Text

has a Text area for entering the text that will be displayed. It is possible to set the font, font style, font size and whether or not the text has rich text capability

16
New cards

Image

A sprite can be applied to the Image component under the Target Graphic field, and its color can be set in the Color field

17
New cards

Image - Simple

Scales the whole sprite equally.

18
New cards

Image - Sliced

Utilizes the 3x3 sprite division so that resizing does not distort corners and only the center part is stretched

19
New cards

Image - Tiled

Similar to Sliced, but tiles (repeats) the center part rather than stretching it. For sprites with no borders at all, the entire sprite is tiled.

20
New cards

Image - Filled

Shows the sprite in the same way as Simple does except that it fills in the sprite from an origin in a defined direction, method and amount.

21
New cards

Raw Image

takes a texture (no borders etc). should only be used if necessary otherwise Image will be suitable in the majority of cases.

22
New cards

Mask

a way to modify the appearance of a control’s child elements

23
New cards

Button

has an OnClick UnityEvent to define what it will do when clicked

24
New cards

Toggle

has an Is On checkbox that determines whether the Toggle is currently on or off. It also has an OnValueChanged UnityEvent to define what it will do when the value is changed.

25
New cards

Toggle Group

mutually exclusive. Toggles that belong to the same group are constrained so that only one of them can be selected at a time - selecting one of them automatically deselects all the others

26
New cards

Slider

has a decimal number Value that the user can drag between a minimum and maximum value. It also has a OnValueChanged UnityEvent to define what it will do when the value is changed.

27
New cards

Scrollbar

has a decimal number Value between 0 and 1. When the user drags the scrollbar, the value changes accordingly. has another 0 to 1 value that determines how big the handle is as a fraction of the entire scrollbar length. Uses OnValueChanged

28
New cards

Dropdown

list of options to choose from. A text string and optionally an image can be specified for each option, and can be set either in the Inspector or dynamically from code. It has a OnValueChanged

29
New cards

Input Field

make the text of a Text Element editable by the user. It has a UnityEvent to define what it will do when the text content is changed, and an another to define what it will do when the user has finished editing it.

30
New cards

Scroll Rect

can be used when content that takes up a lot of space needs to be displayed in a small area.

31
New cards

Event System

is a way of sending events to objects in the application based on input, be it keyboard, mouse, touch, or custom input.

32
New cards

Event System Roles

  • Manage which GameObject is considered selected

  • Manage which Input Module is in use

  • Manage Raycasting (if required)

  • Updating all Input Modules as required

33
New cards

Input Module

is where the main logic of how you want the Event System to behave lives

  • Handling Input

  • Managing event state

  • Sending events to scene objects.

34
New cards

Raycasters

used for figuring out what the pointer is over. It is common for Input Modules to use the Raycasters configured in the Scene to calculate what the pointing device is over.

35
New cards

Rect Transform - Blueprint Mode

Edit RectTransforms as if they were not rotated and scaled. This enabled snapping too.

36
New cards

Rect Transform - Raw Edit Mode

When enabled, editing pivot and anchor values will not counter adjust the position and size of the rectangle in order to make it stay in one place.

37
New cards

Canvas - Pixel Perfect

Should the UI be rendered without antialiasing for precision?

38
New cards

Canvas - Render Camera

The camera to which the UI should be rendered (see below).

39
New cards

Canvas - Render Mode

The way the UI is rendered to the screen or as an object in 3D space (see below). The options are Screen Space - Overlay, Screen Space - Camera and World Space.

40
New cards

Canvas - Plane Distance

The distance at which the UI plane should be placed in front of the camera.

41
New cards

Canvas - Event Camera

The camera that will be used to process UI events.

42
New cards

Canvas - Receives Events

Are UI events processed by this Canvas?