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
2
Question by unitydev0008 · Jan 09, 2011 at 02:26 AM · rendererfalseisvisible

Render.IsVisible returning false for one frame

I have a gameobject that starts out in the center of the camera at startup. For some reason the first frame when the game starts the Gameobject.renderer.IsVisible returns false for just one frame then returns true for the remaining frames. I have this object coded to move down the screen and have code in place to destroy it when it goes offscreen


void Update()
{
    // If gameobject is off screen
    if (!gameObject.renderer.isVisible)
    {
        Destroy(this.gameObject); // Destroy the gameobject
    }
}
Now since the GO is considered not visible for the first frame it is destroyed immediatelly. Can anyone tell me why its doing this?

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

2 Replies

· Add your reply
  • Sort: 
avatar image
3
Best Answer

Answer by jakerman999 · Jan 09, 2011 at 04:08 PM

It could be that your update(); function is being executed before the falling object is done rending, and thus the isVisible property hasn't been set to true yet. Try putting in a boolean that determines if the object was ever visible, and only run the function after that boolean was set.

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 unitydev0008 · Jan 09, 2011 at 09:49 PM 0
Share

Thanks for the answer jakerman, i was thinking of doing this and using the onbecamevisible to set the bool to true. But i also have another script doing the exact same thing but for a projectile that gets instantiated and it works perfectly. I was wanting to make this work without adding that but it looks like i may have to =P thanks again.

avatar image
1

Answer by ayyappa · Jan 02, 2015 at 12:01 PM

You can use a coroutine in the following manner instead of going for another variable.

public class NotifyIfRendererInvisible : MonoBehaviour {

 public delegate void OnRendererInvisible();

 public OnRendererInvisible OnRendererInvisibleCallback;
 
 void Start()
 {
     StartCoroutine(CheckForVisibility());
 }


 //This is a coroutine to check after the end of frame if its visible or not.
 IEnumerator CheckForVisibility()
 {
     while(true)
     {
         yield return new WaitForEndOfFrame();
         if (OnRendererInvisibleCallback != null && !renderer.isVisible)
         {
             OnRendererInvisibleCallback(); 
         }
     }
 }


}

I made it event based, if you want you can remove this and destroy the object directly. But I suggest to pool instead of destroying the objects runtime.

Comment
Add comment · 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

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

2 People are following this question.

avatar image avatar image

Related Questions

Renderer.isVisible = FALSE on app start, TRUE on following frames? 0 Answers

MeshRenderer Scirpt help 1 Answer

Render.IsVisible always show visible even when off camera. 1 Answer

renderer.enabled false not working 1 Answer

renderer.is(Completely)Visible? 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