Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 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 /
  • Help Room /
avatar image
0
Question by Braniel H · Oct 28, 2015 at 01:01 PM · errorcompiler errorbce0044unexpected

Unity error on a nonexistent line of code

This is the error I get from my 31 lines of code: Assets/spawnTile.js(32,1): BCE0044: expecting }, found ''.

 var focus : GameObject;
 var cutoff : int;
 var tile : Transform;
 
 function Update () {
     var distance = Vector3.Distance(focus.transform.position, gameObject.transform.position);
     var self = transform.position;
     var selfX = Mathf.Floor(transform.position.x/1.5);
     var selfZ = Mathf.Floor(transform.position.z/.866);
 //    print (coord);
 //    print (Vector3(self.x + 1.5, self.z + .866));
     if (distance < cutoff){
         var checkX = selfX + 1;
         var checkZ = selfZ + 1;
         var coord : String = "x" + checkX + "z" + checkZ;
         if (!(GameObject.Find(coord + "(Clone)"))){
             tile.name = (coord);
             Instantiate (tile, self + Vector3(1.5, 0, .866), Quaternion.identity);
         }
         checkX = selfX + 1;
         checkZ = selfZ - 1;
         coord = "x" + checkX + "z" + checkZ;
         if (!(GameObject.Find(coord + "(Clone)")) && !(GameObject.Find(coord))){
             tile.name = (coord);
             Instantiate (tile, self + Vector3(1.5, 0, -.866), Quaternion.identity);
         }
     else if (distance < cutoff + 1) {
         Destroy (gameObject);
     }
 }

Well, my expected } is in place on line 31, and there is no " anywhere in sight. ?!

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

Answer by Dave-Carlile · Oct 28, 2015 at 01:03 PM

You're missing a }, most likely before the else on line 27 based on your indentation.

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 Braniel H · Oct 28, 2015 at 04:37 PM 0
Share

Thanks, that cleared the issue up! now I got other random stuff happening...

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

4 People are following this question.

avatar image avatar image avatar image avatar image

Related Questions

compiler error - playmode 0 Answers

AndroidArchitecture' does not contain a definition for 'X86' 1 Answer

errors when compiling a project on Android 0 Answers

DllNotFoundException error 0 Answers

COMPILER ERROR NOT FOUND 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