Skip to content

Releases: dennis112999/Unity-UI-Material-Modifier

v1.0.0

02 Feb 18:40

Choose a tag to compare

🎨 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);