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 navijha · Feb 17, 2016 at 09:39 PM · update functionif-elseupdate-order

Update function doesn't work if conditional statement is present.

Hi, this question is answered many times, but still this is not clear. I am trying to check a condition in update function and subsequently the function will be executed.

My code is:

 using UnityEngine;
 using UnityEngine.UI;
 using System.Collections;
 
 public class relationshipScript : MonoBehaviour {
 
     public GameObject dropArea;
     public Collider2D dropAreaCol;
 
     void Start()
     {
         dropAreaCol = dropArea.GetComponent<Collider2D> ();
     }
 
     void Update()
     {
         Debug.Log ("preLog");
         changeColor ();
         Debug.Log ("postLog");
     }
 
     void changeColor()
     {
         if (dropAreaCol.bounds.Contains (transform.position)) {
             dropArea.GetComponent<Image> ().color = Color.green;
         } else {
             dropArea.GetComponent<Image> ().color = Color.red;
         }
     }
 }

I have declared the collider in start function itself as this was suggested in some answers for the same topic. But still update is called only once. I have also noticed that every question in which the "Update was not working", there was always a conditional statement in the update function. Is it something related to that?

Link to other relevant answer - This link also had answered the same topic with reference to conditional statement but it still is not clear.

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 meat5000 ♦ · Feb 17, 2016 at 04:39 PM 0
Share

Update wont stop like that unless you have an inescapable loop or something, but that will freeze the program. Guessing you have "Collapse" selected in the console.

In the case of a bad loop, the problem does not need to even exist within that script.

The only other thing that I've seen prevent Update running is something that prevents Start() from ending.

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by EmHuynh · Feb 18, 2016 at 08:22 AM

Hello, @navijha. I created a project with a scene with all necessary game objects and attached the needed components to test the script. There is no error, the Update function works. The color of the Image component of dropArea is changed accordingly to the condition of the if statement in function changeColor. The error in your project is caused by something else. Are there any other game objects or scripts that you think is the culprit?

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 navijha · Feb 18, 2016 at 09:16 AM 0
Share

Hello @EmHuynh. Thanks for the answer. You are right, the script is wrongly attached to different game object and so there was an error.

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

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

how's the relationship between updates? 0 Answers

How to use IF in Unity for selection MyScript 1 Answer

TouchInput in Update. Physics in FixedUpdate. Lag and Lost calls? 1 Answer

transform in update method 0 Answers

Timer onTriggerEnter doesn't launch 0 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