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 Lapuka · Feb 21, 2015 at 07:11 PM · prefaboptimizationinstances

Calling all instances of script at once

I have procedural generated level, assembled from clones of 1 tile prefab which has a script that defines features of prefab like sprite, collider, position, neighbor tiles etc. all those features are updated each frame and changed accordingly to current situation of level.

My question is: how can I make it more efficient, I want to call all instances to check/adjust settings not each frame but only when one of game objects changes it's state so every other object can adjust to new changes.

Here's what I did: I use

  `public delegate void CustomUpdate ();    
     public static event CustomUpdate cUpdate;`

 

and call cUpdate every time something happens that every tile has to change to adapt to new situation

so in tile's script

 `void OnEnable()
     {
         Generator.cUpdate += setSprite;
     }
     
     
     void OnDisable()
     {
         Generator.cUpdate -= setSprite;
     }`

It works, but I feel like it's work around, maybe there is other way to call every instance of prefab at once ? And can I build every interaction between script who doesn't have direct reference by using delegate/event ? or it's less efficient than using List of all initialized objects and running foreach loop with getComponent to access script of each individual tile and run that update method ? Because this sounds really inefficient

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 rageingnonsense · Feb 21, 2015 at 09:41 PM

You could do a hybrid approach. You could have a class attached to an empty gameobject that keeps track of state. for instance, this could be it's update function:

 public objectsChanged = false;
 void update() {
     if(objectChanged == true) {
         foreach(GameObject go in internalListOfGameObjects) {
              // do stuff...
         }
     }
     objectChanged = false;
 
 }

Have an event set up for each object that this script will pick up. like OnChange(). This woudl set objectChanged = true. This way you only run this loop when required.

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Prefab with UI.Text is not unloaded 1 Answer

Hundreds of weapons, best practice 0 Answers

Multiple instances of an Particle System prefab have the exact same animation. 1 Answer

About Model Combine Optimization? 1 Answer

Huge prefab file sizes 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