Experimental: this API is experimental and might be changed or removed in the future.

ScriptedImporterAttribute.fileExtensions

Switch to Manual
public string[] fileExtensions ;

Description

List of file extensions, without leading period character, that the scripted importer handles.

Minum of one and case incensitive.

using UnityEngine;
using UnityEditor.Experimental.AssetImporters;

[ScriptedImporter(1, new[] {"cb", "cube"})] public class CubeImporter : ScriptedImporter { public override void OnImportAsset(AssetImportContext ctx) { // ... } }