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

SplashScreen.Stop

建议更改

成功!

感谢帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交,但我们确实会阅读来自用户的所有建议的更改,并在适当的地方进行更新。

关闭

提交失败

由于某些原因,无法提交你建议的更改。请在几分钟内再试一次。感谢你抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

声明

public static void Stop(Rendering.SplashScreen.StopBehavior stopBehavior);

描述

停止 SplashScreen 渲染。

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

// This example shows how the SplashScreen can be canceled early via the user pressing any key. public class Example : MonoBehaviour { public SplashScreen.StopBehavior stopBehavior;

void Start() { StartCoroutine(SplashScreenController()); }

IEnumerator SplashScreenController() { SplashScreen.Begin(); while (!SplashScreen.isFinished) { // Fade to the background if the user presses any key during the splash screen rendering. if (Input.anyKeyDown) { SplashScreen.Stop(stopBehavior); break; } yield return null; } } }