Skip to main content Link Search Menu Expand Document (external link)

Part 2: Importing Assets

In this section, you will learn how to add external files to your Unity project and create folders to keep them organized.

Table of contents
  1. What is an Asset?
  2. Download the Assets
    1. Credits
  3. Importing Sprites
    1. Create a Sprites Folder
    2. Importing Sprites
  4. Challenge: Import Weapons and Fonts
  5. What’s Next?

What is an Asset?

In Unity, an asset is any file or resource used to create and enhance your game or interactive application. Assets can include 3D models, images, audio clips, scripts, animations, and more. They are fundamental building blocks in Unity’s development process, and you can organize and manipulate them within the Unity Editor to bring your game to life.

Download the Assets

  1. Download the project assets: LINK
  2. Extract the assets
  3. Verify the Contents
    • advanced_pixel-7.ttf - A pixel style font
    • heroine.png - A sprite sheet for the main character and armor
    • weapons.png - A sprite sheet containing weapons

Credits

  • Font by Style 7 (free for personal use): Source
  • Heroine, Armor and Weapon Art by Clint Bellanger and modified for this project (Share-a-like license): Source

Importing Sprites

Create a Sprites Folder

In any non-trivial project, it is important to keep your files organized. Start by creating a folder for your Sprites.

  1. Find the Project` window
  2. Open the Assets` Folder
  3. Right click in the Assets` Folder
  4. Select Create > Folder
  5. Name your folder Sprites

Note: You can rename a folder by right clicking and selecting Rename

Importing Sprites

You can import files into a Unity project by dragging them into the project window. The file will be added to the location that is currently selected.

  1. Open the Sprites` folder
  2. Drag the heroine.png asset into the project

Challenge: Import Weapons and Fonts

Now that you know the basics of creating folders and importing assets, can you finish importing the remaining 2 files?

  1. Create a folder for your Fonts. Be sure to place it in the Assets folder
  2. Import the advanced_pixel-7.ttf file into the Fonts folder.
  3. Import the weapons.png file into your Sprites

If all went well, your project window should look similar to the video below:

What’s Next?

With your assets imported, you’re ready to add the heroine sprite to your scene in Part 3: Sprite Sheets

Join the Discussion

Before commenting, you will need to authorize giscus. Alternatively, you can add a comment directly on the GitHub Discussion Board.