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 private void · May 14, 2013 at 09:40 PM · wwwpassingargument

How to change a variable from another script?

Hi, I know that similar questions have been asked, but my question is with a yield www function.

I can load an image from a URL, into a texture, like this:

 public void LoadImage(String img_URL, Texture2D tex=null)
     {    
         www = new WWW(img_URL);
         StartCoroutine(WaitForImageLoad(www, tex));
     }
     
     IEnumerator WaitForImageLoad(WWW www, Texture2D tex=null)
     {        
         yield return www; 
         www.LoadImageIntoTexture(tex);            
     }

But when I try to do the same thing with a String, only the local copy is modified, but not the real variable referenced by the argument theString, in the below code :

 public void LoadString(String URL, String theString=null)
     {    
         www = new WWW(URL);
         StartCoroutine(WaitForStringLoad(www, theString));
     }
     
     IEnumerator WaitForStringLoad(WWW www, String theString=null)
     {    
         yield return www;
         theString = www.text;
     }


What I'm trying to do :

These functions belong to a script called AjaxScript.cs, and I'm trying to initialize the variables of PlayerScript.cs, like this:

 using UnityEngine;
 using System;
 using System.Collections;
 
 public class PlayerScript : MonoBehaviour {
     
     //public variables:
     public AjaxScript AJAX;    
     public Texture2D PlayerPhoto;    
     public String PlayerName="not_defined";
     
     // Use this for initialization
     void Start () {
     
     
             AJAX  = gameObject.GetComponent<AjaxScript>();            
                     
             AJAX.LoadImage("http://image.com/image.jpg",PlayerPhoto); 
             // this works, i.e. PlayerPhoto becomes image.jpg
             
             AJAX.LoadString("http://localhost/my_unity_php_agent.php",this.PlayerName);
             //but this does not work, i.e. PlayerName remains "not_defined"
     }
     
 }


How can I pass PlayerName as a reference and change it direclty in AjaxScript ?

Thanks !

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 booyah · May 15, 2013 at 10:06 AM

Hello!
I believe this is what you're looking for.

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 private void · May 15, 2013 at 11:57 AM 0
Share

Thank you booyah, but since I'm using the IEnumerator type, it gives an error like "you can't use ref or out keywords in an iteration function".

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

14 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

Related Questions

assetBundle.mainAsset exception 0 Answers

Load mp3 from Harddrive on PC (again) 1 Answer

How to stop a WWW which is in progress? 0 Answers

WWW.texture with a wildcard in the URL 1 Answer

Is it possible to call Update() while running in background in iOS? 1 Answer


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