ImageProxy.cs 276 B

1234567891011
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.UI;
  5. public class ImageProxy : Image {
  6. public Color renderColor {
  7. get { return canvasRenderer.GetColor(); }
  8. set { canvasRenderer.SetColor(value); }
  9. }
  10. }