| 1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using UnityEngine;
- namespace TheraBytes.BetterUi
- {
- public interface IImageAppearanceProvider
- {
- ColorMode ColoringMode { get; }
- Color SecondColor { get; set; }
- Color color { get; set; }
-
- string MaterialType { get; set; }
- MaterialEffect MaterialEffect { get; set; }
- VertexMaterialData MaterialProperties { get; }
- Material material { get; }
- void SetMaterialProperty(int propertyIndex, float value);
- float GetMaterialPropertyValue(int propertyIndex);
- void SetMaterialDirty();
- }
- }
|