I have a blender object and trying to show on the screen on my android phone via min3d,but so far I am getting black blank screen.My object is a simple cube without images. here is the my code
Main Activity
this.startActivity( new Intent(this,Obj3DView.class));
Obj3DView
public class Obj3DView extends RendererActivity {
private Object3dContainer faceObject3D; /** Called when the activity is first created. */
@Override public void initScene()
{
IParser myParser = Parser.createParser(Parser.Type.OBJ, getResources(), "com.example.opengldenemebir:raw/untitled_obj",true);
myParser.parse();
faceObject3D = myParser.getParsedObject();
faceObject3D.position().x =1;
faceObject3D.position().y =1;
faceObject3D.position().z = 0;
faceObject3D.scale().x = faceObject3D.scale().y = faceObject3D.scale().z = 1.009f;
}
**log cat shows no error
here is the log cat.