博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
unity DoTween tips面板
阅读量:5920 次
发布时间:2019-06-19

本文共 869 字,大约阅读时间需要 2 分钟。

using UnityEngine;using System.Collections;using DG.Tweening;public class NewTipsPanel : BaseNewComponent{    private Transform text;    private Transform panel;    private Vector3 pos;    private bool isMove = false;    private float time = 1.5f;    private int y = 200;    void Awake()    {        text = transform.FindChild("Panel/Text");        panel = transform.FindChild("Panel");        pos = panel.localPosition;    }    public void SetTipsText(string content)    {        if (isMove) return;        isMove = true;        UIComponents.SetUIText(text, content);        panel.DOLocalMoveY(y, time).SetEase(Ease.InFlash);        StartCoroutine(IECloseThis(time));    }    IEnumerator IECloseThis(float time)    {        yield return new WaitForSeconds(time);        isMove = false;        panel.localPosition = pos;        UIManager.Instance.Close("TipsUI");    }}

转载地址:http://oibvx.baihongyu.com/

你可能感兴趣的文章
检测浏览器内核
查看>>
WF4实例对象转化成XAML文档
查看>>
nodejs:express API之res.locals
查看>>
CEF3 笔记三(常用类的介绍)
查看>>
POJ3349-Snowflake Snow Snowflakes
查看>>
预约系统(七) 管理页面--用户管理页面
查看>>
Codeforces Round #533(Div. 2) D.Kilani and the Game
查看>>
Form中Block的重新查询
查看>>
H5 canvas建造敌人坦克
查看>>
GeoServer style标注中文乱码配置
查看>>
微信 Demo
查看>>
linux ubuntu12.04 解压中文zip文件,解压之后乱码
查看>>
每日一记--Axjx
查看>>
cap文件格式解析
查看>>
Spring中的事物管理----HelloWorld
查看>>
(五)SpringMVC之使用Kaptcha实现验证码功能
查看>>
Jsoncpp 使用方法大全
查看>>
Python 字典(2)
查看>>
linux防火墙
查看>>
【MySQL优化】分表
查看>>