Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - mike_pu

Pages: [1]
1
Support / ktx texture file
« on: May 28, 2012, 05:18:10 am »
please tell me how can i support .ktx texture file. :D

2
Support / why i cannot move my object?
« on: May 24, 2012, 05:50:40 am »
please help me,
            sphere=Loader.load3DS(res.openRawResource(R.raw.skin), 1f)[0];

            sphere.translate(0, 25, 0);//want to move
            sphere.rotateX((float) -Math.PI / 2);
            sphere.setTexture("texture");
my code is like this,when i call sphere.translate(0, 25, 0);the sphere  rotate a little,it didnot move,why?
but i can move object: thing1 = Loader.loadMD2(res.openRawResource(R.raw.thingmd), 0.4f);
                                                        thing1.translate(0, -25, 0);
            thing1.rotateY((float) Math.PI / 3);
            thing1.setTexture("thing1T");
it's so confused me. :'(

Pages: [1]