csharp UIAnimation

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp UIAnimation相关的知识,希望对你有一定的参考价值。

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;

public class UIAnimation : MonoBehaviour {
    [SerializeField]
    private Color defaultColor, changeColor;
    private Text __text;
    private Text text { get { return this.__text ? this.__text : this.__text = GetComponent<Text> (); } }

    // Start is called before the first frame update
    void Start () {

    }

    void OnEnable () {
        SwitchDefaultColor ();
    }

    public void SwitchChangeColor () {
        text.color = changeColor;
    }

    public void SwitchDefaultColor () {
        text.color = defaultColor;
    }

    // Update is called once per frame
    void Update () {

    }
}

以上是关于csharp UIAnimation的主要内容,如果未能解决你的问题,请参考以下文章

使用随机坐标重复 UIAnimation

为 UIImageview 设置 Uianimation 和 Touch 事件

试图从 UIButton 后面滑出一个新的 UIView 是 UIAnimation

UITableView 与 UIScrollView

我可以在 UIView 动画块中使用 setAnimationRepeatCount: 吗?

iOS中删除单元格时UICollectionView的动画时间