Version: 2017.4
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

AssetImporter.RemoveRemap

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

public method RemoveRemap(identifier: AssetImporter.SourceAssetIdentifier): bool;
public bool RemoveRemap(AssetImporter.SourceAssetIdentifier identifier);

Parameters

identifierThe identifier of the sub-asset.

Returns

bool Returns true if an element was removed, otherwise false.

Description

Removes an item from the map of external objects.

Apply changes by writing the metadata and reimporting the Asset.

The external Asset referenced in the map is not affected in any way by this method.

#pragma strict
public class Extractor {
	public static function RemoveExternalObjectMapping(assetPath: String, subAssetIdentifier: AssetImporter.SourceAssetIdentifier) {
		var assetImporter: var = AssetImporter.GetAtPath(assetPath);
		assetImporter.RemoveRemap(subAssetIdentifier);
		AssetDatabase.WriteImportSettingsIfDirty(assetPath);
		AssetDatabase.ImportAsset(assetPath, ImportAssetOptions.ForceUpdate);
	}
}
using UnityEngine;
using UnityEditor;

public class Extractor { public static void RemoveExternalObjectMapping(string assetPath, AssetImporter.SourceAssetIdentifier subAssetIdentifier) { var assetImporter = AssetImporter.GetAtPath(assetPath); assetImporter.RemoveRemap(subAssetIdentifier);

AssetDatabase.WriteImportSettingsIfDirty(assetPath); AssetDatabase.ImportAsset(assetPath, ImportAssetOptions.ForceUpdate); } }