Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • 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
0
Question by anonymous_code · May 07, 2013 at 06:15 PM · scenescene-loadingloadlevel

cannot access the next scene

firstly, the scene will be loaded to the TPS4 scene after the user click on the text from mainmenu scene...after the user done with the game, a new scene(win scene) will appear which is ask the user if the user want to play again or exit to desktop...when the user hit play again, the mainmenu scene is loaded...I tried to access mainmenu scene after the user chose play again. when the mainmenu scene appear, the user will click on the text which is loaded to the mainmenu scene again..however, it doesn't loaded..just stuck in the mainmenu scene

anyone can fix it??

this is my code for mainmenu scene

 var soundhover : AudioClip;
 var beep : AudioClip;
 var QuitButton : boolean = false;
 function OnMouseEnter(){
     audio.PlayOneShot(soundhover);
 }
 function OnMouseUp(){
     audio.PlayOneShot(beep);
     yield new WaitForSeconds(0.35);
     if(QuitButton){
         Application.Quit();
     }
     else{
         Application.LoadLevel("TPS4");
     }
 }



and this is my code for win scene

     var buttonHeight:float=500;
     var buttonWidth:float=500;
     var buttonSpace:float=50;
     var titleTexture:Texture2D;
     var customSkin:GUISkin;
     var customStyle:GUIStyle;
     
         function OnGUI(){
             GUI.skin = customSkin;
             GUILayout.BeginArea(Rect(Screen.width/2-buttonWidth/2,Screen.height/2-buttonHeight/2,buttonHeig
 
 ht,buttonWidth),customStyle);
         GUILayout.Space(50);
         GUILayout.Label(titleTexture);
         GUILayout.Space(buttonSpace);
         //GUILayout.Box("Please Select");
         if(GUILayout.Button("Play Again")){
             Application.LoadLevel("mainmenu");
         }
         GUILayout.Space(buttonSpace);
         if(GUILayout.Button("Exit to Desktop")){
             Application.Quit();
         }
         GUILayout.Space(buttonSpace);
         GUILayout.EndArea();
     }
Comment
Add comment
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

1 Reply

· Add your reply
  • Sort: 
avatar image
0
Best Answer

Answer by Fred_Vicentin · May 07, 2013 at 06:26 PM

Did you added the scene on the Build ? Opening the scene and going to file>build> button "Add Current" ?

You can also try to access the scene using Application.LoadLevel(1); (Or the number that appear on the TPS4 scene)

Comment
Add comment · Show 2 · 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 anonymous_code · May 07, 2013 at 07:15 PM 0
Share

yes...I have built it...I got the error when I try to re-access it for the second time...The scene could be access by another scene before...

avatar image Fred_Vicentin · May 07, 2013 at 07:39 PM 0
Share

Oh, sorry, now I understood, try Application.LoadLevel(Application.loadedLevel);

Or Application.LoadLevel(Application.loadedLevelName == "Name")

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.

Follow this Question

Answers Answers and Comments

13 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Enter building script for a open world game 0 Answers

Why is OnLevelWasLoaded () called twice and why are my variable's values different in each call?,How do I use a variable right after scene change? 1 Answer

Can you create transitions between levels using Application.LoadLevel? 6 Answers

Level Load Display Delay 0 Answers

Loading bar for NEXT scene/level... 1 Answer


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