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 ess · Jun 29, 2012 at 09:06 PM · colliderfpsrenderertoggledisabled

Option to Toggle Renderers/Colliders OFF Slows Game FPS to Standstill

Hi Forum,

In my project, I want to include the option of toggling off the visibility of certain game objects. Barring this, everything is currently working alright in the project, and all objects start with renderers and colliders on. The meshes are pretty meaty, but things still run between 90-140 fps and there is no "stuttering" when the user clicks and drags the objects around.

However.

As soon as I add a condition to my toggle...

 if (togSysM){
     triggerGo = 20;
     print(triggerGo);
     ToggleSysMuscleTendon();
 }

... and add my disabling function into my script...

 function ToggleSysMuscleTendon(){
 var renderers = muscleTendon.GetComponentsInChildren(Renderer);
 for (var r : Renderer in renderers) {
     r.enabled = !r.enabled;
 }    
 var colliders = muscleTendon.GetComponentsInChildren(Collider);
 for (var c : Collider in colliders) {
     c.enabled = !c.enabled;
 }

}

Things crawl to an impressive 0.9-2.6 fps. (Note, I've left out the relevant var definitions, but they are of course in the script as well.)

I know the code works, because it's worked on versions of this same project that had smaller-scale objects and had the option to toggle on/off several game objects, not just one. What is especially baffling to me is that the function actually asks the game to render FEWER objects than it does at start, and yet it cripples my fps rate. Maybe I'm naive, but this seems counterintuitive.

Has anyone else experienced something similar, or know of a better, less expensive way to disable object renderers/colliders?

Thanks in advance!

  • Ess

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
Best Answer

Answer by Owen-Reynolds · Jun 29, 2012 at 10:04 PM

Is togSysM your variable for an official GUI.toggle? If so, looks like you're running the "shut off" code every frame (after clicking once to shut off.) That should slow you down some. For a "once when toggled" could try:

 bool oldTagVal = togsysM;
 togSysM = GUI.toggle....
 if(oldTogVal==false && togSysM==true) { run shut off code }
 else if(oldTogVal==true && togSysM==false) { run turn on code }
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 ess · Jun 30, 2012 at 01:25 AM 0
Share
  • $$anonymous$$uch better, thank you!

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

Update Renderer Bounding Volumes - Lower Game Performance 1 Answer

Objects not jumpable on 2 Answers

Collider Cost to FPS question 1 Answer

Calculate time per frame 5 Answers

My player's camera displays jerky objects 2 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