Version: 2020.3
LanguageEnglish
  • C#

AssetDatabase.ExtractAsset

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 string ExtractAsset(Object asset, string newPath);

Parameters

asset The sub-asset to extract.
newPath The file path of the new Asset.

Returns

string An empty string if Unity has successfully extracted the Asset, or an error message if not.

Description

Creates an external Asset from an object (such as a Material) by extracting it from within an imported asset (such as an FBX file).

NOTE: The feature is currently only available for materials embedded in model assets.

All file paths are relative to the project folder. For example: "Assets/Materials/myMaterial.mat".

Method throws ArgumentNullException when the Asset is null and ArgumentException when the file path is null or empty.

using UnityEngine;
using UnityEditor;

public class Extractor { public static void ExtractFromAsset(Object subAsset, string destinationPath) { string assetPath = AssetDatabase.GetAssetPath(subAsset);

AssetDatabase.ExtractAsset(subAsset, destinationPath);

AssetDatabase.WriteImportSettingsIfDirty(assetPath); AssetDatabase.ImportAsset(assetPath, ImportAssetOptions.ForceUpdate); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961