Version: 2022.1
言語: 日本語

AssetPostprocessor.OnPostprocessMaterial(Material)

マニュアルに切り替える

説明

Add this function to a subclass to get a notification when a Material asset has completed importing.

Use this method to modify the properties of newly created Material assets during import.

This method is only called by the ModelImporter.

using UnityEngine;
using UnityEditor;

public class MakeMaterialsRed : AssetPostprocessor { void OnPostprocessMaterial(Material material) { material.color = Color.red; } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961