お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。
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インポートしようとしているAssetImporterを参照します
#pragma strict // Set the scale of all the imported models to "globalScaleModifier" // and dont generate materials for the imported objects class CustomImportSettings extends AssetPostprocessor { var globalScaleModifier : float = 0.0028f; function OnPreprocessModel() { var importer : ModelImporter = assetImporter as ModelImporter; importer.globalScale = globalScaleModifier; importer.importMaterials = false; } }