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 06:16 AM · errorupdatenguitower-defense

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

I have a code from a tutorial on youtube (unitycookie). Somebody helped me to fix a lot of mystiping in the code but I som strange problems now that I think are related to NGUI. I am using Unity 4.0.7f pro and NGUI 2.6.4 full. Here is my 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 in 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 in placementPlanesRoot)
         {
             thePlane.gameObject.renderer.enabled = true;
         }
         buildPanelTweener.Play(true);
         buildPanelArrowTweener.Play(true);
         buildPanelOpen = true;
     }
 }

And the errors that are showing: alt text

Please help! If this problem is related to NGUI what I need to do with the code to get it working.

error_ngui_td4.jpg (473.3 kB)
Comment
Add comment · Show 1
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 Joyrider · Aug 15, 2013 at 01:27 PM 1
Share

@zalan23677632 Don't create 4 questions about the same thing. Edit your question and have it evolve.

Everytime your question is updated, commented on or answered it moves back to the top of the pile, so no need to worry you're not going to get an answer.

1 Reply

· Add your reply
  • Sort: 
avatar image
-2
Best Answer

Answer by zalan23677632 · Aug 15, 2013 at 01:19 PM

I FIXED THE PROBLEM

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 save · Aug 15, 2013 at 01:20 PM 0
Share

Please describe your action for the resolution if others have the same problem.

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 ver.2. 1 Answer

Game ruined when updated to unity 3.2 0 Answers

Time.time button delay trick causing NaN 0 Answers

HELP! Most GUI Text mysteriously nudged upwards after update.. 1 Answer

moved project to new version of Unity, Weird stylehseet error 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