Skip to content

v1.0.0

Latest

Choose a tag to compare

@dennis112999 dennis112999 released this 02 Feb 18:40

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