Unity协程WaitForSeconds在编辑器和WebGL表现不同问题的解决方法参考

最近做的一个效果让下面为了让下面这种图片生成一个翻页效果(使用ShaderGraph中的FlipBook节点),我通过携程来实现连续翻页。

先是定义一个Coroutine coroutine = null;

然后在一定情况下执行coroutine = StartCoroutine(KeepPreview(texSheet));这样这个协程就可以连续执行起来了,达到通过WaitForSeconds来控制翻页进度的目的。

cs 复制代码
	IEnumerator KeepPreview(TexSheet texSheet)
	{
		if (texSheet)
		{
			float frameRate = Mathf.Abs(texSheet.frameRate);
			if (frameRate < 0.01f)
			{
				yield return null;
			}
			else
			{
				float interval = 1 / frameRate;
				yield return new WaitForSeconds(interval);
				texSheet.UpdateSheetIndex();
			}

			coroutine = StartCoroutine(KeepPreview(texSheet));
		}
	}

本来在编辑器里面是比较正常的,但是发布成WebGL之后效果就有问题。在编辑器里面如果增加翻页的速度(就是增加frameRate的值,帧/秒)确实会出现越转越快的效果,从0到几百都是正常的(当然太快了也没什么意义)但是在WebGL中超过翻页60帧/秒左右感觉速度就没有什么变化了。

我想可能的原因是,在编辑器里面使用WaitForSeconds等待某个时间后,应该是马上就执行后面的内容了,这里是texSheet.UpdateSheetIndex()这个方法。但是在发布成WebGL之后,即使等待的时间到了,也要等到本帧结束了才会执行后面的内容,这应该是即使翻页帧率设置很高翻页效果都和60帧/秒差不多得原因,所以在WebGL环境下的处理方式应该变一下,类似下面代码给出的方法,虽然这个并不是很准确的方法,但视觉上应该也看不出来什么问题吧。

cs 复制代码
	IEnumerator KeepPreview(TexSheet texSheet)
	{
		if (texSheet)
		{
			float frameRate = Mathf.Abs(texSheet.frameRate);
			if (frameRate < 0.01f)
			{
				yield return null;
			}
			else
			{
				float interval = 1 / frameRate;
				yield return new WaitForSeconds(interval);
#if UNITY_EDITOR_WIN
				texSheet.UpdateSheetIndex();
#endif
#if UNITY_WEBGL && !UNITY_EDITOR_WIN
				int updateTimes = (int)(Time.deltaTime / interval);
				if(updateTimes <1) { updateTimes = 1; }
				for(int i = 0; i < updateTimes; i++) { texSheet.UpdateSheetIndex(); }
#endif
			}

			coroutine = StartCoroutine(KeepPreview(texSheet));
		}
	}
相关推荐
Thomas_YXQ2 小时前
Unity3D 动态骨骼性能优化详解
开发语言·网络·游戏·unity·性能优化·unity3d
Yungoal5 小时前
Unity入门1
unity·游戏引擎
杀死一只知更鸟debug18 小时前
Unity自学之旅04
unity
k56946216619 小时前
失业ing
unity·游戏引擎
橘子遇见BUG21 小时前
Unity Shader学习日记 part5 CG基础
学习·unity·游戏引擎·图形渲染
来恩10032 天前
Unity 学习之旅:从新手到高手的进阶之路
学习·unity·游戏引擎
创世界---2 天前
unity插件Excel转换Proto插件-ExcelToProtobufferTool
unity·excel·exceltoproto·protobuffer
向宇it3 天前
【从零开始入门unity游戏开发之——C#篇46】C#补充知识点——命名参数和可选参数
开发语言·unity·c#·编辑器·游戏引擎
快乐觉主吖3 天前
使用Newtonsoft.Json插件,打包至Windows平台显示不支持
unity·json
ellis19703 天前
详解C#反射(Reflection)
unity·c#