言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

AssetPostprocessor.OnPreprocessModel()

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

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

この関数をサブクラスに追加してモデル (.fbx, .mb ファイル等) のインポート完了の直前に通知を取得します

これによりインポート設定をコードにより制御できます。

	// Disable import of materials if the file contains
	// the @ sign marking it as an animation.

	class DisableMaterialImport extends AssetPostprocessor {
		function OnPreprocessModel () {
			if (assetPath.Contains("@")) {
				var modelImporter : ModelImporter = assetImporter;
				modelImporter.importMaterials = false;
			}
		}
	}