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 Player-of-Players · Jul 25, 2017 at 02:35 PM · webglwwwserver-hostingwww.texture

Texture is not loading using WWW class in WebGL build.

The project runs properly on editor, but not when uploaded to the server. In my project, i am fetching some detail from a table on my server and a profile pic using a link, I am getting all the data from table successfully, but profile picture is unable to load. here is the code i written.

 string profileLink;
 IEnumerator LoadWebData(WWW www)
 {
     yield return www;
     if (string.IsNullOrEmpty(www.error) && !www.text.Contains("record not found"))
     {
         usr = JsonReader.Deserialize<UserData>(www.text);
         name_p1.text = usr.display_name;
         name_p2.text = usr.display_name;
         point_p1.text = usr.points;
         point_p2.text = usr.points;
         karma_p1.text = usr.level;
         karma_p2.text = usr.level;
     }
     if (usr.profile_pic != "")
     {
         profileLink = "www.twitchtime.com/doforward/wp-content/uploads/2017/" + usr.profile_pic;
         
         WWW www2 = new WWW(profileLink);
         StartCoroutine(LoadProfilePic(www2));
         
     }
 }
 IEnumerator LoadProfilePic(WWW www2)
 {
     yield return www2;
    
     if (string.IsNullOrEmpty(www2.error))
     {
         profilePic.mainTexture = www2.texture;
         profilePic2.mainTexture = www2.texture;
         debugStr.text = profileLink;
     }
     debugStr.text = www2.error;
 }

It shows unknown error in debugStr label.

Comment
Add comment · Show 2
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 TheSimplicityArchitect · Feb 24, 2018 at 12:03 AM 0
Share

I have exactly the same issue

avatar image Bonfire-Boy · Feb 24, 2018 at 01:25 AM 0
Share

I've edited your post to make the code more readable. For next time please note that you should use the button with 101010 on it to paste code in.

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

75 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

Related Questions

Cant load texture by WWW in WebGL 0 Answers

Unity + Cors in WebGL 1 Answer

View Ip cameras remotely over the internet 0 Answers

IP blocked for pulling images using WWW class 1 Answer

How to send a string from a website to the webGL game 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