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));
		}
	}
相关推荐
_oP_i1 小时前
unity webgl部署到iis报错
unity
Go_Accepted1 小时前
Unity全局雾效
unity
向宇it1 小时前
【从零开始入门unity游戏开发之——C#篇24】C#面向对象继承——万物之父(object)、装箱和拆箱、sealed 密封类
java·开发语言·unity·c#·游戏引擎
汪洪墩3 小时前
【Mars3d】设置backgroundImage、map.scene.skyBox、backgroundImage来回切换
开发语言·javascript·python·ecmascript·webgl·cesium
m0_748234344 小时前
webGL硬核知识:图形渲染管渲染流程,各个阶段对应的API调用方式
图形渲染·webgl
每日出拳老爷子4 小时前
【图形渲染】【Unity Shader】【Nvidia CG】有用的参考资料链接
unity·游戏引擎·图形渲染
北海65165 小时前
Dots 常用操作
unity
YY-nb13 小时前
Unity Apple Vision Pro 开发教程:物体识别跟踪
unity·游戏引擎·apple vision pro
Cool-浩13 小时前
Unity 开发Apple Vision Pro物体识别追踪ObjectTracking
unity·ar·apple vision pro·mr·物体识别·vision pro教程·objecttracking
MossGrower1 天前
36. Three.js案例-创建带光照和阴影的球体与平面
3d图形·webgl·three.js·光照与阴影