• 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 darkal · Oct 16, 2013 at 05:40 PM · errorguiitemsyntax

Item Scripting Error

Assets/cube.js(27,45): BCE0044: expecting :, found '='.

     var details : boolean = false;
     var detaillistActive : boolean = false;
     var pickup : boolean = false;
     var dropdetails : boolean = false;
     var tunnelwidth = 500; 
     var tunnelheight = 200; 
     var tunnel1 = 100; 
     var tunnel2 = 30;
     var law = 500;
     var lah = 230;
     var size = 100;
     var size1 = 25;
     var pickw = 500;
     var pickh = 255;
     var picksize = 100;
     var picksize1 = 25;
     var Cube : gameObject;
  
         function OnGUI ()
         {
             if (details)
             {
                 
                    if (GUI.Button(Rect(tunnelwidth, tunnelheight, tunnel1, tunnel2), "Cube"));
                    {
                    //error is here
                    detaillistActive = !detaillistActive;
                    }
                    if(detaillistActive)
                    {
                    GUI.Box(Rect(law, lah, size, size1), "Cube");
                    if (GUI.Button(Rect(pickw, pickh, picksize, picksize1), "Pick-up"));
                    {
                    pickup = !pickup;
                    }
                    }
            }
            if(pickup)
            {
            (GUI.Button(Rect(100, 100, 75, 25),"Cube"));
            details = false;
            }
            if (pickup)
                {
                Destroy (Cube);
                }
           }
           
 
         
        function OnTriggerEnter(other : Collider)
        {
             if(other.tag == "Player")
             {
                 details = true;
             }
        }
  
        function OnTriggerExit(other: Collider)
        {
             if(other.tag == "Player")
             {
                 details = false;
             }
         }
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

2 Replies

· Add your reply
  • Sort: 
avatar image
Best Answer

Answer by YoungDeveloper · Oct 16, 2013 at 05:41 PM

You don't need semicolon after if()

  if (GUI.Button(Rect(tunnelwidth, tunnelheight, tunnel1, tunnel2), "Cube"));
 {

should be

  if (GUI.Button(Rect(tunnelwidth, tunnelheight, tunnel1, tunnel2), "Cube"))
 {
Comment
Graham-Dunnett
meat5000

People who like this

2 Show 3 · 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 darkal · Oct 16, 2013 at 05:53 PM 0
Share

i tried that the error is still there

avatar image meat5000 ♦ · Oct 18, 2013 at 12:09 AM 0
Share

It's an obvious mistake. I'll tell you the answer for 5% of your profits ;)

avatar image darkal · Oct 21, 2013 at 01:27 PM 0
Share

btw u were right but it was in more then 1 spot but it helped me find it thanks man

avatar image

Answer by darkal · Oct 17, 2013 at 07:53 PM

i solved it

Comment
Graham-Dunnett

People who like this

-1 Show 3 · 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 Graham-Dunnett ♦♦ · Oct 17, 2013 at 07:54 PM 2
Share

That's not an answer. If you solved it, perhaps post your solution so a future Unity community person can see your solution.

avatar image darkal · Oct 17, 2013 at 11:33 PM 0
Share

well i was the person who asked the question so theres not much point in sharing it if i solved it even more so seeing as i wanna make a profit off of it lmao

avatar image meat5000 ♦ · Oct 18, 2013 at 12:07 AM 1
Share

With that attitude good luck getting anyone else to make your profit for you...

(FYI : Two kite symbols denotes a user is an admin on the site. This status is currently reserved for selected Unity and dZone employees. Admins can suspend users and give/take Karma.

From UA FAQ )

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

17 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

Related Questions

Tracking Down GUI Errors 0 Answers

"NullReferenceException" while trying to draw a texture (C#) 1 Answer

script connection 1 Answer

Error in my script i don't understand. 0 Answers

Script not working (Java script) 2 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