| Parameter | Description |
|---|---|
| packagePath | The path to the package. |
| interactive | Set to true to open an import dialog box on import. Set to false to import all assets in the package into the project. |
Imports the package at packagePath into the current project.
using UnityEditor; using UnityEngine;
public class AssetDatabaseExamples : MonoBehaviour { [MenuItem("AssetDatabase/Import Package Example")] static void ImportPackageExample() { var texturePackageNames = new[] {"groundTextures2k.unitypackage", "groundTextures4k.unitypackage"}; foreach (var package in texturePackageNames) { AssetDatabase.ImportPackage(package, false); } } }