ScriptedImporterAttribute

class in UnityEditor.AssetImporters

Cambiar al Manual

Descripción

Class attribute used to register a custom asset importer derived from ScriptedImporter with Unity's Asset import pipeline.

using UnityEngine;
using UnityEditor.AssetImporters;

[ScriptedImporter(version: 1, ext: "sphere", AllowCaching = true)] public class SphereImporter : ScriptedImporter { public override void OnImportAsset(AssetImportContext ctx) { // ... } }

Variables

AllowCachingEnable cache server uploads and downloads.
fileExtensionsList of file name extensions (not including the leading period character) that the scripted importer handles.
importQueuePriorityEnables controlling the ordering of asset import based on type. Positive values delay the processing of source asset files while negative values place them earlier in the import process.
overrideFileExtensionsList of file name extensions (not including the leading period character) that the scripted importer can handle in addition to the default file name extension(s).
versionImporter version number that is used by the import layer to detect new version of the importer and trigger re-imports when such events occur, to apply latest changes made to the scripted imrpoter.

Constructores

ScriptedImporterAttributeUse the ScriptedImporter attribute to register a custom importer derived from ScriptedImporter with Unity's Asset import pipeline.
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961