Author Topic: How to Load .obj file using JPCT in Android?  (Read 7279 times)

Offline gkapoor

  • byte
  • *
  • Posts: 12
    • View Profile
How to Load .obj file using JPCT in Android?
« on: August 24, 2010, 02:08:19 pm »
Hello,

I am a newer to JPCT. I want to load .obj file using JPCT. It will be very appreciated if anyone could give me such example.

Thanks & Regards,

gkapoor

Offline zammbi

  • float
  • ****
  • Posts: 361
    • View Profile
Re: How to Load .obj file using JPCT in Android?
« Reply #1 on: August 24, 2010, 02:29:31 pm »
Code: [Select]
Loader.loadOBJ(...)
Have you looked at the helpful wiki? http://www.jpct.net/wiki/index.php/Main_Page

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: How to Load .obj file using JPCT in Android?
« Reply #2 on: August 24, 2010, 04:35:22 pm »
Another option is to load it with the desktop version of jPCT, serialize it using the DeSerializer and load the serialized data into jPCT-AE.

BTW: This is an Android related question, so i'll move this thread...

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net

Offline zzx410527

  • byte
  • *
  • Posts: 4
    • View Profile
Re: How to Load .obj file using JPCT in Android?
« Reply #4 on: March 09, 2014, 09:50:52 am »
Another option is to load it with the desktop version of jPCT, serialize it using the DeSerializer and load the serialized data into jPCT-AE.

BTW: This is an Android related question, so i'll move this thread...
I was a beginner, my needs are 3d models obj loaded on the phone, I use loadOBJ () method takes a long time to load, you have any good way?

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: How to Load .obj file using JPCT in Android?
« Reply #5 on: March 09, 2014, 10:22:04 am »
This thread already contains the answer: Use serialized objects instead.