Author Topic: How to convert .ser file to an obj file?  (Read 2011 times)

Offline gamenewer

  • long
  • ***
  • Posts: 171
    • View Profile
How to convert .ser file to an obj file?
« on: October 12, 2014, 11:53:40 am »
Hello Egon,  I  get some .ser file  and I want to convert them to obj file , but I don't know how to do this , can you help me ? Thanks very much ! :)

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: How to convert .ser file to an obj file?
« Reply #1 on: October 12, 2014, 08:50:46 pm »
You can't, at least not by using a magic method from the API. With .ser, i assume that you mean an object in jPCT's serialized format? If that's the case, you can load it by the default means that jPCT provides and then extract the geometry and export it back in any format you like. The catch is, that you have to do this yourself. There's no export method that does this. Maybe this thread helps:
http://www.jpct.net/forum2/index.php?topic=4116.0

Offline gamenewer

  • long
  • ***
  • Posts: 171
    • View Profile
Re: How to convert .ser file to an obj file?
« Reply #2 on: October 13, 2014, 07:57:18 am »
Thanks for your help !