
Importing the ARToolkit Assets package
Now that the ARToolkit package is downloaded we can import it into our Unity project. In Unity, do the following:
- Go to the Main Menu
- Click on Assets | Import Package | Custom Package..., find your ARToolkit Unity package file
- Import the files into your project.
These steps may be very familiar since they're common any time you import a third-party package into Unity and were detailed previously for Vuforia (please refer to the previous instructions, if you wish).

The ARToolkit package is now imported into your Unity project. Look at the Project panel. You will see several new folders, including ARToolkit5-Unity, Plugins, and StreamingAssets:

The Plugins folder is where Unity keeps platform-specific binary and API code files. It now contains ARToolkit's low-level API libraries and related files for Windows, iOS, Android, and other supported platforms.
Note the ARWrapper bundle folder in Plugins. It is an intermediary layer of code between the Unity SDK and lower-level API, an important feature of the ARToolkit device-independent architecture. We will learn to deal with this in Visual Studio in the next chapter.
The StreamingAssets folder is where Unity expects to find media files that may be used by the app at runtime. For ARToolkit, this is where you'll copy target data you've prepared for your application. It now contains some example files used by the example scenes.
The ARToolkit5 folder contains many Unity assets that may be useful in your project, including Materials, Scripts, Shaders, and Examples. We'll explore these further in our projects.