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 EpicGamer928 · Sep 02, 2013 at 12:25 PM · cuberestart game

??Whats wrong with this script??? HELP

I have a script that should:

  • On collision with a gameObject tagged 'Cube'

  • Display a GUI box with some text saying 'You got eaten by the cubes...'

  • And underneath that a GUI button with the text 'Restart Game'

  • When you press the GUI button, it restarts the current level.

Unity just comes up with lots of compiler errors. Can anyone debug this code and give me a version that is correct?

Thankyou in advance...

  function OnCollisionEnter (hit : Collision)
 {
      if(hit.transform.gameObject.name == "Cube")
      {
      
      function OnGUI() {
           GUI.Box (Rect (10, 10, 100, 20),"You got eaten by the cubes...");
      
     
     if GUI.Button(Rect(10,70,50,30),"Restart Game")
             Application.LoadLevel(Application.loadedLevel);
             
     }
     
   }
   
 }
 
 
  
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

2 Replies

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

Answer by roojerry · Sep 02, 2013 at 12:39 PM

Take time to learn some basic programming, it would benefit you greatly. You have tried to declare the OnGUI function within the OnCollisionEnter function. You need to separate them into two functions and use a boolean to determine whether the GUI should show or not

 function OnCollisionEnter (hit : Collision)
 {
     if(hit.transform.gameObject.name == "Cube")
     {
         wasEaten = true;
     }
 }
 
 function OnGUI() 
 {
     if(wasEaten)
     {
         GUI.Box (Rect (10, 10, 100, 20),"You got eaten by the cubes...");
  
         if (GUI.Button(Rect(10,70,50,30),"Restart Game"))
         {
              Application.LoadLevel(Application.loadedLevel);
         }
     }
 }
Comment
Add comment · Show 4 · 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 EpicGamer928 · Sep 02, 2013 at 03:10 PM 0
Share

Thankyou for your answer. Looked right but when i tried it out it did't work:

expecting (, found GUI

unexpected token: .

avatar image EpicGamer928 · Sep 02, 2013 at 03:11 PM 0
Share

Could you update the script?

avatar image Bunny83 · Sep 02, 2013 at 03:31 PM 1
Share

(sigh) I've fixed the missing brackets....

You should really follow the advice of brianruggieri and learn the basics (the very basics).

avatar image AlucardJay · Sep 02, 2013 at 03:39 PM 0
Share

yet brianruggeri keeps giving this user answers :/

avatar image
1

Answer by f1a5b9i7e5n3 · Sep 02, 2013 at 12:51 PM

Maybe cause you have a function inside a function...

Comment
Add comment · Show 1 · 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 EpicGamer928 · Sep 02, 2013 at 03:15 PM 0
Share

Yeah, I am really bad at scripting...

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

20 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 avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Can't add script - need to fix all compile errors 1 Answer

Why are these errors messing with me? 2 Answers

How to make an object spawn in different positions? 2 Answers

reseting rotation of objects? 0 Answers

Why do i get 4 errors here? (Javascript) 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