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 zalan23677632 · Aug 15, 2013 at 04:41 AM · errornguitower-defenserockettower defense

An another problem - Tower Defense GUI ver.2.

I didnt saw any action on my first post in this topic. Only 1 answer came which partly solved my problem. So I am reuploading my problem so maybe I have a better chance to fix this problem. My code is from a tutorial from unitycookie on youtube. It uses NGUI. In my case I am using Unity 4.0.7f pro and NGUI 2.6.4 full. I think its a mistyping error but it can be the version of NGUI or unity.Here is the code:

 #pragma strict
 
 var buildPanelOpen : boolean = false;
 var buildPanelTweener : TweenPosition;
 var buildPanelArrowTweener : TweenRotation;
 
 var placementPlanesRoot : Transform;
 var hoverMat : Material;
 private var originalMat : Material;
 private var lastHitObj : GameObject;
 
 var onColor : Color;
 var offColor : Color;
 var allStructures : GameObject[];
 var buildBtnGraphics : UISlicedSprite;
 private var structureIndex : int =0;
 
 function Start()
 {
     structureIndex = 0;
     UpdateGUI();
 }
 
 function Update ()
 {
     if(buildPanelOpen)
     {
         var ray = Camera.main.ScreenPointToRay (Input.mousePosition);
         var hit : RayCastHit;
         if(Physics.Raycast (ray, hit, 1000, placementLayerMask))
         {
             if(lastHitObj)
             {
                 lastHitObj.renderer.material = originalMat;
             }
             lastHitObj = hit.collider.gameObject;
             originalMat = lastHitObj.renderer.material;
             lastHitObj.renderer.material = hoverMat;
         }
         else
         {
             if(lastHitObj)
             {
                 lastHitObj.renderer.material = originalMat;
                 lastHitObj = null;
             }
         }
         if(Input.GetMouseButtonDown(0)&&lastHitObj)
         {
             if(lastHitObj.tag == "PlacementPlane_Open")
             {
                 var newStructure : GameObject = Instantiate(allStructures[structureIndex], lastHitObj.transform.position, Quaternion.identity);
                 newStructure.transform.localEulerAngles.y = (RandomRange(0,360));
                 lastHitObj.tag == "PlacementPlane_Taken";
             }
         }
     }
 }
 
 function UpdateGUI()
 {
     for(var theBtnGraphic : UISlicedSprite int buildBtnGraphics)
     {
         theBtnGraphic.color = offColor;
     }
     buildBtnGraphics[structureIndex].color = onColor;
 }
 
 function SetBuildChoice(btnObj : GameObject)
 {
     var btnName : String = btnObj.name;
     if(btnName == "Btn_Cannon")
     {
         structureIndex : 0;
     }
     else if(btnName == "Btn_Missile")
     {
         structureIndex : 1;
     }
     else if(btnName == "Btn_Mine")
     {
         structureIndex : 2;
     }
     UpdateGUI();
 }
 
 function ToggleBuildPanel()
 {
     if(buildPanelOpen)
     {
         for(var thePlane : Transform in placementPlanesRoot)
         {
             thePlane.gameObject.renderer.enabled = false;
         }
         buildPanelTweener.Play(false);
         buildPanelArrowTweener.Play(false);
         buildPanelOpen = false;
     }
     else
     {
         for(var thePlane : Transform int placementPlanesRoot)
         {
             thePlane.gameObject.renderer.enabled = true;
         }
         buildPanelTweener.Play(true);
         buildPanelArrowTweener.Play(true);
         buildPanelOpen = true;
     }
 }



And here are the Problems that UNITY shows for me: alt text

I really appriceate the help. Oh and here are some links:

UnityCookie TowerDefense Tutorial series:GoTo

The Video of the code (Part3B):GoTo

error_ngui_td2.jpg (480.3 kB)
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 Jamora · Aug 15, 2013 at 04:57 AM

for(var theBtnGraphic : UISlicedSprite int buildBtnGraphics) has int where it should say in

That'll at least change the first two errors...

Comment
Add comment · Show 5 · 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 zalan23677632 · Aug 15, 2013 at 05:03 AM 0
Share

Sorry but I have newer and newer problems: alt text

I did everything that you said :(

error_ngui_td3.jpg (468.4 kB)
avatar image Jamora · Aug 15, 2013 at 05:07 AM 0
Share

You have the same typo in line 101, then lines 70-85 you need to have = ins$$anonymous$$d of :

You need to pay more attention to detail. Just keep working through the errors like this and eventually they'll end.

avatar image zalan23677632 · Aug 15, 2013 at 05:14 AM 0
Share

Ok now I have ton of problems solved but still I have Unexpected token : structureIndex 3 times: In:74,17 In:78,17 In:82,17

Do I need to change : to = there?

avatar image zalan23677632 · Aug 15, 2013 at 05:17 AM 0
Share

If I change them to = ton of more problems appear: alt text

error_ngui_td4.jpg (473.3 kB)
avatar image Jamora · Aug 15, 2013 at 08:54 AM 0
Share

Those aren't syntax problems anymore, you need to read the error messages and fix the problem it tells you. the mystic numbers in parentheses are (row number, character where the error was encountered).

Those errors say a type can't be found (usually a class). You either have a typo in the name (RaycastHit is the correct spelling), you've not included the necessary namespaces or you need to create the type yourself. Reading error messages is part of program$$anonymous$$g, you have to learn at one point.

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

16 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

Related Questions

An another problem - Tower Defense GUI 1 Answer

Are these problems are related to a NGUI change (update) 1 Answer

My tower defense script fires too often 5 Answers

Tower Defense tpwers follow player untill i klick 1 Answer

Tower defense blender grated tower get wird when i use destroy 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