# PrefabAssetType

> Enum indicating the type of Prefab Asset, such as Regular, Model and Variant.

## Definition

* **Type:** Enum
* **Namespace:** [UnityEditor](/engine/6000.7/script-reference/unityeditor.md)
* **Assembly:** UnityEditor.CoreModule

```csharp
public enum PrefabAssetType
```

## Remarks

For an object on a Prefab Asset, the asset itself is checked. For an object on a Prefab instance, its corresponding asset is checked.

## Fields

| Value                                                                                       | Description                                                                                                                            |
| ------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- |
| [MissingAsset](/engine/6000.7/script-reference/unityeditor/prefabassettype/missingasset.md) | The object being queried is part of a Prefab instance, but because the asset is missing the actual type of Prefab can’t be determined. |
| [Model](/engine/6000.7/script-reference/unityeditor/prefabassettype/model.md)               | The object being queried is part of a Model Prefab.                                                                                    |
| [NotAPrefab](/engine/6000.7/script-reference/unityeditor/prefabassettype/notaprefab.md)     | The object being queried is not part of a Prefab at all.                                                                               |
| [Regular](/engine/6000.7/script-reference/unityeditor/prefabassettype/regular.md)           | The object being queried is part of a regular Prefab.                                                                                  |
| [Variant](/engine/6000.7/script-reference/unityeditor/prefabassettype/variant.md)           | The object being queried is part of a Prefab Variant.                                                                                  |
