Hi,
I am trying to deploy my app using JWS
my app contains some simple shapes with textures.
I have been adding the textures using the following code:
Texture2D textureSphere = null;
TextureLoader tl = new TextureLoader();
textureSphere = (Texture2D)tl.getMinMapTexture("./DemoOBJ/skyboxs/sky_up.jpg");
Appearance a = new Appearance();
a.setTexture(textureSphere);
this works fine for local development
I realise that for JWS I should be using a URL - can anybody show me how to do this given the above code.
Cheers
rmdire