Version: 2017.4
LanguageEnglish
  • C#
  • JS

Script language

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

Experimental: this API is experimental and might be changed or removed in the future.

AssetImportContext.SetMainObject

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 SetMainObject(obj: Object): void;
public void SetMainObject(Object obj);

Parameters

objThe Unity Object that is to be marked as the main object.

Description

Specifies which object in the asset file should become the main object of the import opperation.

This method allows you to specify which object is to be concidered as the main object and all other objects in the asset become children of the main object.

Note: Before invoking this method, the object that is passed as the argument, must first be added with AddObjectToAsset. If this method is not called, then one of the objects added throught AddObjectToAsset is automaticaly promoted as the main object. If GameObjects are added throught AddObjectToAsset, then SetMainObject must refer to one of these GameObjects: passing a different type of object will have the selection ignored and one of the GameObjects will be chosen as the main object.