jPCT-AE - a 3d engine for Android > Support

Texturing a Primitive

(1/1)

Kaiidyn:
Hello,

I just started out a couple of days ago with 3D programming for Android,
And jPCT-ae really got my attention, It's easy to use and well documented.
But I got a problem putting a texture on a Ellipsoid primitive.


--- Code: ---TextureManager.getInstance().flush();
TextureManager tm = TextureManager.getInstance();
Resources res = Engine.resources;

/** LOAD TEXTURES **/
Texture random = new Texture(Engine.resources.getDrawable(R.raw.random));
tm.addTexture("random", random);

TextureInfo randomTex = new TextureInfo(tm.getTextureID("random"));

button1 = Primitives.getEllipsoid(64, 0.5f);
button1.setTexture(randomTex);
button1.build();
button1.translate(0, -125, 0);
world.addObject(button1);

--- End code ---
All this code is located in onSurfaceCreated.

The texture I'm trying to put on.

I got the feeling it does actually work, but partially,
As I see my entire mesh in red.
I think I need to do something with the UV Mapping, but have no idea how that works.
Or, it has something to do with texture scaling.. that the image is too big for the object.

My question therefor is, how do I downscale the texture to match my object, or how does UV Mapping work?

Kind regards,
Kaiidyn.


Edit:
Figured out that it is actually a problem with the UV mapping,
the center of the texture (where i have the text) gets put on the side of the Ellipsoid that has been squeezed by the scaleHeight.
What I want is that the text in the texture is set on the top of the primitive as a button, like This one.
But I have no idea how to do that.

EgonOlsen:
The objects created by the Primitives class have no proper uv-coordinates (except for the plane). They are mainly meant as placeholders or for debugging. There are two calcTextureWrap....methods in Object3D, but the outcome most likely won't fit your needs. It might be a better idea to create something in a 3d editor instead.

vael:
btw what does calcTextureWrap() do? I tried calling it with a box primitive and it seemed like all uv were set (0; 0)

EgonOlsen:
It's like static environment mapping. UVs are 0,0 anyway, so letting calcTextureWrap...do this would be pointless.

Kaiidyn:
OK, thanks for the reply..
I currently don't have any modelling programs installed that I can actually work with,
Do have AC3D and Blender installed, but AC3D's export function just fails, and I don't like how Blender works.
Will download 3ds Max again when I'm at my parents place with better internet =p (next weekend:p)
Unless someone else could model me a button like this one or this one that can animate (pressing the button) *puppyeyes* :p

Kind regards and thanks again,
Kaiidyn.

Edit: Managed to get it working with AC3D :)

Navigation

[0] Message Index

Go to full version