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

SplashScreen.StopBehavior.StopImmediate

建议修改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交,但我们确实阅读了用户提出的每个建议更改,并在适用的情况下进行更新。

关闭

提交失败

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

关闭

取消

描述

立即停止渲染启动画面。

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

// This example shows how the Splash Screen 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; } } }