Version: 2020.1
言語: 日本語
Experimental: this API is experimental and might be changed or removed in the future.

ScriptedImporterAttribute.fileExtensions

マニュアルに切り替える
public string[] fileExtensions ;

説明

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