ProjectDDD/Assets/Plugins/Animate UI Materials/GraphicPropertyOverrideTexture.cs

36 lines
1.3 KiB
C#

using UnityEngine;
namespace Plugins.Animate_UI_Materials
{
/// <summary>
/// Used in with GraphicMaterialOverride to modify a material without creating a variant
/// Added to a child of the Graphic element
/// This variant only applies to Texture properties
/// </summary>
[AddComponentMenu("UI/Animate UI Material/GraphicPropertyOverrideTexture")]
public class GraphicPropertyOverrideTexture : GraphicPropertyOverride<Texture>
{
/// <summary>
/// Apply the modified property to the material
/// </summary>
/// <param name="material"></param>
public override void ApplyModifiedProperty(Material material)
{
material.SetTexture(PropertyId, propertyValue);
}
/// <summary>
/// Retrieve the default Texture value from the source material
/// </summary>
/// <param name="material">The source material</param>
/// <param name="defaultValue">The Texture value from the material</param>
/// <returns>True if the value could be retrieved</returns>
public override bool GetDefaultValue(Material material, out Texture defaultValue)
{
bool hasProperty = material.HasTexture(PropertyId);
if (hasProperty) defaultValue = material.GetTexture(PropertyId);
else defaultValue = default;
return hasProperty;
}
}
}