Recall & Review
beginner
What is a sprite in Unity?
A sprite in Unity is a 2D image or graphic used for characters, objects, or backgrounds in a game. It is like a picture that you can move and animate.
Click to reveal answer
beginner
How do you import an image as a sprite in Unity?To import an image as a sprite, drag the image file into the Unity Project window. Then select the image, and in the Inspector, set the Texture Type to 'Sprite (2D and UI)'.Click to reveal answer
intermediate
What is the purpose of the Sprite Editor in Unity?
The Sprite Editor lets you cut a single image (called a sprite sheet) into multiple smaller sprites. This helps when you want to animate or use parts of one big image.
Click to reveal answer
intermediate
Why should you set the Pixels Per Unit (PPU) when importing a sprite?
Pixels Per Unit tells Unity how many pixels in the image equal one unit in the game world. Setting it correctly keeps the sprite size consistent with other objects.
Click to reveal answer
intermediate
What is the difference between a sprite and a texture in Unity?
A texture is a general image used on 3D models or UI, while a sprite is a texture specifically set up for 2D games with extra settings for animation and rendering.
Click to reveal answer
How do you change an imported image to a sprite in Unity?
✗ Incorrect
You must set the Texture Type to 'Sprite (2D and UI)' in the Inspector to use the image as a sprite.
What tool do you use to slice a sprite sheet into multiple sprites?
✗ Incorrect
The Sprite Editor allows you to slice a sprite sheet into smaller sprites.
What does Pixels Per Unit (PPU) affect in a sprite?
✗ Incorrect
PPU controls how many pixels correspond to one unit in the game world, affecting sprite size.
Which of these is NOT a step to import a sprite?
✗ Incorrect
You do not need to write code to import a sprite; Unity handles it through the Editor.
What file formats can you import as sprites in Unity?
✗ Incorrect
Common image formats like PNG, JPG, and GIF can be imported as sprites.
Explain the process of importing an image as a sprite in Unity.
Think about the steps from adding the file to preparing it for use.
You got /4 concepts.
Describe why Pixels Per Unit is important when working with sprites.
Consider how the sprite fits in the game scene.
You got /4 concepts.