Demo_ShinyEffectForUGUI.cs 282 B

1234567891011121314151617
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.UI;
  5. namespace Coffee.UIExtensions
  6. {
  7. public class Demo_ShinyEffectForUGUI : MonoBehaviour
  8. {
  9. [SerializeField] RectMask2D mask;
  10. void Start()
  11. {
  12. mask.enabled = true;
  13. }
  14. }
  15. }