Version: 2021.3
LanguageEnglish
  • C#

AssetDatabase.GetAvailableImporterTypes

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public static Type[] GetAvailableImporterTypes(string path);

Parameters

path The Asset path.

Returns

Type[] Returns an array of importer types that can handle the specified Asset.

Description

Gets the importer types associated with a given Asset type.

using System;
using UnityEngine;
using UnityEditor;
using UnityEditor.AssetImporters;

public class AssetDatabaseExamples : MonoBehaviour { [MenuItem("AssetDatabase/Available Importer Types for cube")] static void AvailableImporterTypeCube() { Type[] CubeTypes = AssetDatabase.GetAvailableImporterTypes("Assets/CompanionCube.cube"); for (int i = 0; i < CubeTypes.Length; i++) { Debug.Log("Available Importer Type for cube: " + CubeTypes[i]); } }

//This is Example Importer for cube [ScriptedImporter(1, "cube")] public class CubeImporter : ScriptedImporter { public float m_Scale = 1; public override void OnImportAsset(AssetImportContext ctx) { var cube = GameObject.CreatePrimitive(PrimitiveType.Cube); var position = new Vector3(0, 0, 0); cube.transform.position = position; cube.transform.localScale = new Vector3(m_Scale, m_Scale, m_Scale); // 'cube' is a a GameObject and will be automatically converted into a prefab ctx.AddObjectToAsset("main obj", cube); ctx.SetMainObject(cube); var material = new Material(Shader.Find("Standard")); material.color = Color.red; ctx.AddObjectToAsset("my Material", material); var tempMesh = new Mesh(); } } }