www.jpct.net

jPCT-AE - a 3d engine for Android => Support => Topic started by: gkapoor on August 24, 2010, 02:08:19 pm

Title: How to Load .obj file using JPCT in Android?
Post by: gkapoor 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
Title: Re: How to Load .obj file using JPCT in Android?
Post by: zammbi 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
Title: Re: How to Load .obj file using JPCT in Android?
Post by: EgonOlsen 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...
Title: Re: How to Load .obj file using JPCT in Android?
Post by: EgonOlsen on August 24, 2010, 05:14:02 pm
Some more info on serialized objects: http://www.jpct.net/wiki/index.php/Differences_between_jPCT_and_jPCT-AE#Performance_and_memory_issues.2C_serialized_objects (http://www.jpct.net/wiki/index.php/Differences_between_jPCT_and_jPCT-AE#Performance_and_memory_issues.2C_serialized_objects)
Title: Re: How to Load .obj file using JPCT in Android?
Post by: zzx410527 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?
Title: Re: How to Load .obj file using JPCT in Android?
Post by: EgonOlsen on March 09, 2014, 10:22:04 am
This thread already contains the answer: Use serialized objects instead.