お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。
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インポートされた、またはインポートしていようとしているアセットに対してのパスを取得します
// Automatically sets Textures settings upon first import and prints the // path from where is being imported class CustomImportSettings extends AssetPostprocessor { function OnPreprocessTexture() { Debug.Log("Importing texture to: " + assetPath); var importer : TextureImporter = assetImporter; importer.textureFormat = TextureImporterFormat.ARGB32; importer.isReadable = true; importer.mipmapEnabled = false; } }