π¨ Unity UI Material Modifier - v1.0.0 π
Release Date: 2025-02-03
π― Overview
This is the first stable release (v1.0.0) of Unity UI Material Modifier, allowing you to dynamically modify UI material properties like color, transparency, contrast, and more without manually editing shaders.
β¨ Features & Enhancements
β
Shader Property Editing via Inspector
Modify shader properties directly in the Unity Inspector, with a user-friendly UI.
β Supported Shader Property Types
Float(e.g.,_Saturation,_Contrast)Int(e.g.,_Mode)Color(e.g.,_Color)Vector4(e.g.,_Offset)
β Automatic Shader Property Validation
- Warnings for incorrect property types
- Real-time error messages for missing shader properties
β
Easy-to-Use API
Modify shader properties at runtime:
UIMaterialModifier.SetFloat("_Saturation", 1.5f);
UIMaterialModifier.SetColor("_Color", Color.red);