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

SplashScreen.Begin

建议修改

成功!

感谢您帮助我们提升 Unity 文档质量。虽然我们无法接受所有提交,但我们会阅读用户提出的每条修改建议,并在适用时进行更新。

关闭

提交失败

由于某些原因,无法提交您的修改建议。请在几分钟后<a>重试</a>。感谢您抽出时间帮助我们提高 Unity 文档质量。

关闭

取消

声明

public static void Begin();

说明

初始化准备开始绘制的启动画面。在您开始调用 SplashScreen.Draw 之前调用该函数。该函数在内部会重置计时器并为绘制准备徽标。

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"); } }