欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Unity3D实现待机状态图片循环淡入淡出

程序员文章站 2023-11-15 15:37:58
本文实例为大家分享了unity3d实现图片循环淡入淡出的具体代码,供大家参考,具体内容如下1、说明 由于近期项目需求,在网上找了淡入淡出的代码,但都是两张图片淡入淡出结束后就没有了(可能我没找到其他好...

本文实例为大家分享了unity3d实现图片循环淡入淡出的具体代码,供大家参考,具体内容如下

1、说明

由于近期项目需求,在网上找了淡入淡出的代码,但都是两张图片淡入淡出结束后就没有了(可能我没找到其他好的作品)。所以我做了简单的扩展

2、简单思路

既然待机状态下的图片淡入淡出切换,所以,首先要判断何时为待机状态(即屏幕没有任何操作的情况下);其次,图片静止一段时间后,开始淡入淡出,第一张图片淡入,第二张淡出;接着图片再次静止一段时间,然后接着下次的淡入淡出,但因为是循环淡入淡出,所以要考虑重新加载第一张照片(再下一次淡入淡出要重新加载第二张照片)。还有在淡入淡出的循环中还要考虑图片alpha值从1到0然后从0到1的循环(可以避免闪烁淡入淡出,有种自然的感觉);最后判断进入非待机状态,即有操作。

3、代码实现及分析

引入ui命名空间,用ui做淡入淡出效果;

using unityengine.ui;

public image nobody_img1;
public image nobody_img2;//淡入淡出的两张图片
public float fadetotaltime=5f;//淡入淡出的时间
public float imagestatictime=3f;//图片静止时间
public float runningtime=10f;//程序运行时间
public int standbytime=5;//无操作时间
/*
[hideininspector]
public bool standby=false;
*/

private bool standby=false;//是否处于待机状态
private float starttime=0;//开始待机时间
private int imgindex=2;//图片索引(图片名字)
private float remainder=0//下一次待机开始时间
private bool hasstartnext=false;//是否已经加载过下一张待机图片
private bool canload=true;//是否可以加载图片
private bool startcounttime=false;//是否可以统计待机时间
private int standbytime=0;//待机时间
private int time=0;//帧数,用于统计待机时间
private vector3 prevmousepos=vector3.zero;//鼠标上一帧所处的位置

/*变量说明
判断屏幕无操作(而且鼠标的位置要没有变化)后就开始统计无操作的时间(即startcounttime=true,time++(放在fixedupdate函数中),standbytime++),当standbytime超过规定时间,standby=true;开始图片淡入淡出
*/

/*
程序刚运行时,不管有没有操作,十秒钟后开始统计开机时间
*/
ienumerator startpreparestandby()
{
 yield return new waitforseconds(runningtime);
 startcounttime=true;//开始统计待机时间
}

/*
进入待机后,显示两张图片,并静止一段时间后在循环淡入淡出
*/
ienumerator startfirstfade()
{
 //现实两张图片
 nobody_img1.enabled=true;
 nobody_img2.enabled=true;
 yield return new waitforseconds(imagestatictime);
 //重置时间
 starttime=time.time;//开始待机时间等于程序现在的时间
 remainder=starttime;//记录淡入淡出开始的时间
 //开始待机
 standby=true;
}

/*
第一次淡入淡出后开始以后的淡入淡出循环
*/
ienumerator startnextfade()
{
 if(imgindex>=4)//判断图片索引是否越界(图片索引也是图片名)
  imgiindex=0;
 //canload在这用于判断加载哪一张图片
 if(canload)
 {
  nobody_img1.sprite=resources.load(imgindex.tostring(),typeof(sprite)) as sprite;
 }
 else
 {
  nobody_img2.sprite=resources.load(imgindex.tostring(),typeof(sprite)) as sprite;
 }
 canload = !canload;//取反,用于区分图片的加载
 imgindex++;//图片索引累加,下次加载下一张图片
 yield return new waitforseconds(imagestatictime);
 //重置淡入淡出时间
 starttime=time.time;
 remainder=starttime;
 //图片已加载,等待下次的加载
 hasstartnext=false;
}

void start()
{
 //调用开始统计待机时间的协程
 startcoroutine(startpreparestandby());
}

void fixedupdate()
{
 if(startcounttime)
 {//无操作下统计时间
  if(input.mouseposition==prevmousepos)
  {//判断鼠标是否还在移动
   time++;
  }
  else
  {//鼠标移动时,重置待机时间
   standbytime=0;
   time=0;
  }
 }
 if(time>=50)
 {
  time=0;
  standbytime++;//待机秒数
 }
 if(standbytime>standbytime)
 {//超出规定的无操作的时间即认为待机状态
  standbytime--;//开始第一次图片淡入淡出协程只执行一次
  startcounttime=false;//停止待机时间的统计
  startcoroutine(startfirstfade());//开始第一图片淡入淡出
 }
}

void update()
{
 if(input.getmousebuttondown(0))
 {//每次鼠标按下都停止待机及相关的判断
  stopcoroutine(startnextfade());//停止淡入淡出
  standby=false;//退出待机状态
  //保留当前图片的alpha值
  if(canload)
  {//根据当前canload来判断那一张照片在淡入淡出
   nobody_img1.color=new color(1,1,1,1);
   nobody_img2.color=new color(1,1,1,0);
  }
  else
  {
   nobody_img1.color=new color(1,1,1,0);
   nobody_img2.color=new color(1,1,1,1);
  }
  //隐藏待机图片
   nobody_img1.enabled=false;
   nobody_img2.enabled=false;
   //重置待机时间
   standbytime=0;
   time=0;
 }
 else if(input.getmousebuttonup(0))
 {//鼠标每次抬起都认为是无操作
  startcounttime=true;
  prevmousepos=input.mouseposition;
 }
 if(standby)
 {
  if(time.time<starttime+fadetotaltime)
  {
   float alphavalue=(time.time-remainder)/fadetotaltime;
   if(canload)
   {
    nobody_img1.color=new color(1,1,1,1-alphavalue);
    nobody_img2.color=new color(1,1,1,alphavalue);
   }
   else
   {
    nobody_img1.color=new color(1,1,1,alphavalue);
    nobody_img2.color=new color(1,1,1,1-alphavalue);
   }
  }
  else
  {
   if(!hasstartnext)
   {
    hasstartnext=true;//已开始加载下一张照片
    startcoroutine(startnextfade());//开始下一次淡入淡出协程
   }
  }
 }
 prevmousepos=input.mouseposition;//记录每一帧鼠标的位置
}

总结

虽然此次感觉思路较为清晰但还是花费了很长时间来完成这一简单的程序;我也深信对这一简单的程序,肯定还有简单的做法;自我感觉自己的程序有点绕且繁琐(对程序的扩展也可以引用设计模式的单例模式或其他模式进行再其他脚本处的待机状态判断)。欢迎各位指点一二!

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。