Reset#
- ExportMaterial.Reset(name)#
指定した名前のマテリアルを対象に、ロード時の状態に戻します。
- Parameters:
name (
string
) -- マテリアルの名前
Example#
-- 1. ロード初期値は白色のマテリアルが存在します。
print(vci.assets.material.GetColor("Material1")) --> RGBA(1.000, 1.000, 1.000, 1.000)
-- 2. マテリアルの色を黒色に変更します。
vci.assets.material.SetColor("Material1", Color.__new(0, 0, 0, 1))
print(vci.assets.material.GetColor("Material1")) --> RGBA(0.000, 0.000, 0.000, 1.000)
-- 3. マテリアルをロード時の状態に戻します。白色に戻ります。
vci.assets.material.Reset("Material1")
print(vci.assets.material.GetColor("Material1")) --> RGBA(1.000, 1.000, 1.000, 1.000)