• Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
Question by Tyler Starr · Mar 06, 2011 at 06:10 AM · guiiphonescreensplash

How to change time Splash Screen is Displayed

How can I change the time my splashscreen is shown. Can i set it for a time? the game loads to fast and i want the splash screen to be shown long.

-Thanks

Comment

People who like this

0 Show 0
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

3 Replies

· Add your reply
  • Sort: 
avatar image

Answer by Eric5h5 · Mar 06, 2011 at 06:13 AM

The splash screen is part of the way the OS works and is not under your control. You can make your own in Unity if you want, but keep in mind that people don't really want to look at them, so I'd recommend against it. "Loading too fast" isn't a problem...the faster the better.

Comment
Peter G

People who like this

1 Show 0 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image

Answer by GameGuy · Mar 06, 2011 at 01:35 PM

You can use the SplashScreen script from the Unify Wiki, and change the fade to your needs.

Remember if you need to test your build, you always run through your splashscreen(which is really annoying). From my point of view it make only sense if the project is nearly finished. But sometimes things dont let us rest easy if they are not implemented ;)

http://www.unifycommunity.com/wiki/index.php?title=SplashScreen

Comment
Ashkan_gc

People who like this

1 Show 0 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image

Answer by Ashkan_gc · Mar 06, 2011 at 01:39 PM

my fellow worker and friend Sina wrote this a few months ago.

using UnityEngine; using System.Collections;

public class Splash : MonoBehaviour { public float UpTimeSpeed = 1; public float WaitingTime = 3; public float DownTimeSpeed = 1;

 private GUITexture splash;

 IEnumerator Start()
 {
     Color c = Color.white;
     c.a = 0;
     splash = (GetComponent(typeof(GUITexture)) as GUITexture);
     splash.color = c;

     while (c.a < 1)
     {
         c.a += Time.deltaTime * UpTimeSpeed;
         splash.color = c;
         yield return null;
     }
     yield return new WaitForSeconds(WaitingTime);
     while (c.a > 0)
     {
         c.a -= Time.deltaTime * DownTimeSpeed;
         splash.color = c;
         yield return null;
     }
     Application.LoadLevel(Application.loadedLevel + 1);
 }

}

Comment

People who like this

0 Show 0 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Welcome to Unity Answers

If you’re new to Unity Answers, please check our User Guide to help you navigate through our website and refer to our FAQ for more information.

Before posting, make sure to check out our Knowledge Base for commonly asked Unity questions.

Check our Moderator Guidelines if you’re a new moderator and want to work together in an effort to improve Unity Answers and support our users.

Follow this Question

Answers Answers and Comments

No one has followed this question yet.

Related Questions

how long is the unity splash screen displayed in iphone basic? 1 Answer

game wont load past splashscreen after buying iphone basic license? 1 Answer

Unity Splash Screen 1 Answer

Making a start screen in Unity 3 Answers

iPhone build is a blank scene 0 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges