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
0
Question by applicatlat · Jan 28, 2020 at 06:38 AM · while loop

While loop with URL RAW Image IEnumerator.

I have pre-defined public RawImage 1 to 20, string urls 1 to 20, I wanted to achieve url display of images with while loop. I think I got close. I am trying to do it and searching for two days but could not find anything.

public RawImage i1,i2..... i20; string urli1="url1" .. to urli20 = "url20";

    IEnumerator Start()
 {
     int number = 0;
     string urlGo, iGo;
     while (number < 21)
     {
         urlGo = "urli" + number;
         iGo = "i" + number;
         RawImage ri = gameObject.GetComponent<RawImage>();
             ri.name = iGo;
         WWW w1 = new WWW(urlGo);
         yield return w1;
         ri.texture = w1.texture;
         ri.SetLayoutDirty();
     }
 }

when I do this it works. but the code above gives error

 IEnumerator Start()
 {
     WWW w1 = new WWW(urli1);
     yield return w1;
     i1.texture = w1.texture;
     i1.SetLayoutDirty();
     WWW w2 = new WWW(urli2);
     yield return w2;
     i2.texture = w2.texture;
     i2.SetLayoutDirty();
     WWW w3 = new WWW(urli3);
     yield return w3;
     i3.texture = w3.texture;
     i3.SetLayoutDirty();
     WWW w4 = new WWW(urli4);
     yield return w4;
     i4.texture = w4.texture;
     i4.SetLayoutDirty();
 }


 }
Comment
Add comment · Show 13
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 Zaeran · Jan 28, 2020 at 08:22 AM 1
Share

What error message does it give?

avatar image applicatlat Zaeran · Jan 28, 2020 at 08:37 AM 0
Share

NullReferenceException: Object reference not set to an instance of an object Credits+d__121.$$anonymous$$oveNext () (at Assets/Script/Credits.cs:86) UnityEngine.SetupCoroutine.Invoke$$anonymous$$oveNext (System.Collections.IEnumerator enumerator, System.IntPtr returnValueAddress) (at C:/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)

the code corresponds to this code = ri.name = iGo;

avatar image Zaeran applicatlat · Jan 28, 2020 at 08:55 AM 1
Share

Ok cool. Does the gameobject that the script is attached to have a RawImage component attached to it?

Show more comments

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

120 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

While loop timer stops when button is pressed. 1 Answer

while loop does not pick up again on continue 0 Answers

IOS Touch movement not exiting coroutine 0 Answers

Why my unity not responding after 17 questions? 0 Answers

Unity While Loop Freeze 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