CQ_Intelligent-Technology-T.../Assets/Scripts/智能家居/HightUI.cs

19 lines
301 B
C#

using DG.Tweening;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class HightUI : MonoBehaviour
{
void Start()
{
GetComponent<Image>().DOFade(0.2F, 0.8F).SetLoops(-1, LoopType.Yoyo);
}
void Update()
{
}
}