版本:Unity 6 (6000.0)
语言英语
  • C#

SplashScreen.isFinished

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有建议,但我们确实会阅读用户提出的每项建议,并酌情更新相应内容。

关闭

提交失败

由于某种原因,您的变更建议无法提交。请在几分钟后 重试 一次。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

public static bool isFinished;

说明

屏幕闪屏结束时返回 true。这是指所有徽标都已按指定持续时间显示完毕。

using System.Collections;
using UnityEngine;
using UnityEngine.Rendering;

// This example shows how you could draw the splash screen at the start of a Scene. This is a good way to integrate the splash screen with your own or add extras such as Audio. public class SplashScreenExample : MonoBehaviour { IEnumerator Start() { Debug.Log("Showing splash screen"); SplashScreen.Begin(); while (!SplashScreen.isFinished) { SplashScreen.Draw(); yield return null; } Debug.Log("Finished showing splash screen"); } }