You are on page 1of 3

In this lecture you'll learn how to add sprites to your

game and how to add game objects to the scenes in


your game. 
So let's start by talking about sprites. 
Sprites are graphical assets that we include in our
game. 
Now a sprite can be a single image, or a single frame,
if you will. 
Or it can be a set of frames that we could use for an
animation for something in our game. 
And so, those sprites that are sets of frames are
regularly called sprite sheets, or sprite strips.
And now I need to get a graphical image added to the sprites
folder. 
And Unity supports a wide range of formats,  including PNGs and
JPEGs and so on.  So I typically use PNGs for everything. 
And so that's what I'm going to do. 
And there are a variety of different ways to add an image to the
sprites folder. 
Of course, you can just use your operating system to copy the
image file into your sprites folder, I'm going to show you
another way. 
So you can also just drag from whatever you have that sprite
saved,  onto the sprites folder like that. 
And the sprite then gets added to your project.

You might also like