I have an annoying problem.
I am requesting a texture using the WWW class.
The browser(just writing the url in the url line) and the webplayer version respond as expected yet the editor keeps showing me the “Bad Request” html text body.
The same string that works on the browser and webplayer, and does not work in the editor, does work if I set the string for the url hardcoded, meanin - if I do:
new WWW( “http://myrequest” ) - its ok.
but not if I do:
new WWW( myStringCreatingFunction() ) => bad request.
What could I be missing>