浏览代码

Removed Debug Log

/main
Wiecio 3 年前
当前提交
ed2b5dd7
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 3
      UOP1_Project/Assets/Scripts/UI/FadeManager.cs

3
UOP1_Project/Assets/Scripts/UI/FadeManager.cs


while (totalTime <= duration)
{
totalTime += Time.deltaTime;
_imageComponent.color = Color.Lerp(startColor, endColor, totalTime / duration);
Debug.Log(_imageComponent.color);
_imageComponent.color = Color.Lerp(startColor, endColor, totalTime / duration);
yield return null;
}

正在加载...
取消
保存