Unity 免费去掉闪屏 亲测有效

https://github.com/psygames/UnitySkipSplash

[RuntimeInitializeOnLoadMethod(RuntimeInitializeLoadType.BeforeSplashScreen)]
static void stopSplashScreen()
{
    
    
    System.Threading.Tasks.Task.Run(AsyncSkip);    
}

private static void AsyncSkip()
{
    
    
    SplashScreen.Stop(SplashScreen.StopBehavior.StopImmediate);
}

确实有效 给作者点赞了

猜你喜欢

转载自blog.csdn.net/qq_38913715/article/details/128251100