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 /
avatar image
1
Question by btadic · Sep 02, 2016 at 01:50 PM · networkingperformancecoroutinesthreadsmultiple textures

Sending multiple requests at the same time kills performance (FPS 120 -> 9)

Hello guys,

My VR app is reading JSON feed and displays it's items as game objects. Each item (10-50 item) contains url with image (1280x800 png) used as texture.

I have to send request for (10-50) images and create textures when I receive responses. This is killing my game performance. It blocks UI completely. It can't render even background sky.

It is slow in editor but worse on Android as my target platform.

Can this be done in background? Can I somehow send multiple request as a more efficient batch? Thanks in advance.


Details:

I'm building game object for each cards by initializing it from prefab. During build I'm filling properties and requesting it's texture. Code doing that:

 private void moveModelToControl(List<Cards> cards){
     cards.ForEach(c => loadImage(c));
 }

 private void buildCardGO(c) {
     // 1.  Init game object from prefab 
     // 2. Set properties
     // 3. Ask for image/texture
     loadImage(c);
 }
 
 private void loadImage(Card c) {
     ImageLoader imgLoader = new ImageLoader();
     imgLoader.loadImage ();
 }

where getting images from internet is done using WWW and Coroutine

 public class ImageLoader {
 
     private readonly Card card;
 
     public ImageLoader(Card card) {
         this.card = card;
     }
 
     public void loadImage(){
         WWW www = new WWW(card.url);
         StartCoroutine(WaitForImage(www, onOkAction, handleError));
     }
 
     private IEnumerator WaitForImage(WWW www, Action<WWW> onOkAction, Action<WWW> onErrorAction) {
         yield return www;
 
         if (www.error == null) {
             onOkAction (www);
         } else {
             onErrorAction (www);
         }
     }
 
     private void onOkAction(WWW www) {
         Texture2D texture = new Texture2D (2, 2, TextureFormat.DXT1, true);
         www.LoadImageIntoTexture (texture);
         Sprite newImage = Sprite.Create (texture, new Rect (0, 0, (int)texture.width, (int)texture.height), Vector2.zero);
         card.sprite = newImage;
     }
 
     private void handleError(WWW www) {
         ///handle error ....
     }
 }


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

0 Replies

· Add your reply
  • Sort: 

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

Intense CPU usage when running networking code on Editor only 0 Answers

UNet performance limitations 0 Answers

Syncing data from client to server in 5.1 networking 1 Answer

Thread continues to run after game quits 0 Answers

Networking for send command (string, float, boolean, int) 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