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) { // ... } }