Important information: this site is currently scheduled to go offline indefinitely by end of the year.

Search found 19 matches

by EDXZ23
Thu Aug 22, 2019 6:15 am
Forum: General game tools
Topic: 3D Model Researcher - extract 3D models with Python
Replies: 171
Views: 85901

Re: 3D Model Researcher - extract 3D models with Python

You need to find the correct start address for the UV’s which vary for different files :D what file type are you working with? If I knew, I would have done it myself. But I dont know :( And I left a link to the file. I'm super busy at the moment with my own project, but if I have time I'll take a l...
by EDXZ23
Mon Aug 19, 2019 12:20 pm
Forum: General game tools
Topic: 3D Model Researcher - extract 3D models with Python
Replies: 171
Views: 85901

Re: 3D Model Researcher - extract 3D models with Python

Jamal al dambali wrote: Sat Aug 17, 2019 1:59 pm Hi Lazov! Please tell me how to find uv.
screenshots.jpg
file link: https://yadi.sk/d/UTleab58Y6cF6w
You need to find the correct start address for the UV’s which vary for different files :D what file type are you working with?
by EDXZ23
Sat Aug 10, 2019 10:47 pm
Forum: 3D/2D models
Topic: 3D Model Researcher - Help with faces
Replies: 7
Views: 2066

Re: 3D Model Researcher - Help with faces

eh i don't really look into model formats much anymore, no time, too busy with texture formats. all of my current research on the rax format is here though if you care to have a read through: https://forum.xentax.com/viewtopic.php?f=16&t=13867&hilit=rax&start=60#p126467 thanks man, you'...
by EDXZ23
Sat Aug 10, 2019 10:44 pm
Forum: General game tools
Topic: 3D Model Researcher - extract 3D models with Python
Replies: 171
Views: 85901

Re: 3D Model Researcher - extract 3D models with Python

GHFear wrote: Fri Aug 09, 2019 1:13 pm
EDXZ23 wrote: Fri Aug 09, 2019 10:37 am
GHFear wrote: Fri Aug 09, 2019 8:17 am

Hello
You would have to upload the file so I can look at it.

/GHFear

heres the file dude!
6118.zip

the file was extracted to .dat but i know now that its a .rax file
I can not for the life of me figure this format out.
sorry.
that's cool dude i appreciate the response :D
by EDXZ23
Fri Aug 09, 2019 10:37 am
Forum: General game tools
Topic: 3D Model Researcher - extract 3D models with Python
Replies: 171
Views: 85901

Re: 3D Model Researcher - extract 3D models with Python

Hello Lazov, What do you do in the backend to calculate the UVs from Signed and Unsigned Short? Hi GHFear, Your skate extraction videos is what I've been using as a guide. I've been told that the faces in my file can't be read as a single array and that there may be many start and stop offsets I've...
by EDXZ23
Wed Aug 07, 2019 1:19 pm
Forum: General game tools
Topic: 3D Model Researcher - extract 3D models with Python
Replies: 171
Views: 85901

Re: 3D Model Researcher - extract 3D models with Python

EDXZ23 Unfortunately, there is nothing I can help. I almost do not extract models. But there are people who know this subject very well. Try to ask a question on the forum: https://forum.xentax.com/viewforum.php?f=16 Hello Lazov, What do you do in the backend to calculate the UVs from Signed and Un...
by EDXZ23
Tue Aug 06, 2019 11:38 am
Forum: 3D/2D models
Topic: 3D Model Researcher - Help with faces
Replies: 7
Views: 2066

Re: 3D Model Researcher - Help with faces

When you say they cant be read in a single array, what does that mean? i mean the indices are stored together but i think they are split into material groups, because when you try to render the whole array they look mangled. there might be start and stop offsets stored in the file. Ohhhh right I un...
by EDXZ23
Tue Aug 06, 2019 1:51 am
Forum: 3D/2D models
Topic: 3D Model Researcher - Help with faces
Replies: 7
Views: 2066

Re: 3D Model Researcher - Help with faces

the starting offset for vertices looks like it should be 0x3c70 and the starting offset for face indices should be 0x26460 but i don't think you can read them in a single array. the file structure looks a lot like the rax files from SWBF3. :D The file is from Haze! It was made by the same developer...
by EDXZ23
Tue Aug 06, 2019 12:08 am
Forum: 3D/2D models
Topic: 3D Model Researcher - Help with faces
Replies: 7
Views: 2066

Re: 3D Model Researcher - Help with faces

6118.zip
the file was originally .dat extension. Don't forget to change the file extension back to .dat when downloaded

Creator of 3D model researcher said i need to somehow convert the data but i'm not sure what that means, how to do it or what to convert it to
by EDXZ23
Mon Aug 05, 2019 11:59 pm
Forum: 3D/2D models
Topic: 3D Model Researcher - Help with faces
Replies: 7
Views: 2066

3D Model Researcher - Help with faces

Hi guys, i'm having an issue extracting the faces of a model. I've found the vertices but the faces will not extract properly, can anyone tell me what I'm doing wrong? I'm sure I have the starting address for the vertices and faces right, but I'm really new to this so I could be wrong i will attach ...
by EDXZ23
Mon Aug 05, 2019 3:27 am
Forum: General game tools
Topic: 3D Model Researcher - extract 3D models with Python
Replies: 171
Views: 85901

Re: 3D Model Researcher - extract 3D models with Python

Lazov wrote: Wed Jul 31, 2019 5:04 pm EDXZ23
The readByte function returns a single value, and a tuple is needed.
Try this:
fc = (f.readByte (), f.readByte (), f.readByte ())
faces.append (fc)

But it will not help to extract the model. Need to somehow convert the data.

could you elaborate on convert data?
by EDXZ23
Wed Jul 31, 2019 7:51 pm
Forum: General game tools
Topic: 3D Model Researcher - extract 3D models with Python
Replies: 171
Views: 85901

Re: 3D Model Researcher - extract 3D models with Python

EDXZ23 The readByte function returns a single value, and a tuple is needed. Try this: fc = (f.readByte (), f.readByte (), f.readByte ()) faces.append (fc) But it will not help to extract the model. Need to somehow convert the data. Hi Lazov thanks again for the help!! your code worked the error mes...
by EDXZ23
Wed Jul 31, 2019 12:32 pm
Forum: General game tools
Topic: 3D Model Researcher - extract 3D models with Python
Replies: 171
Views: 85901

Re: 3D Model Researcher - extract 3D models with Python

EDXZ23 It is necessary to watch the model itself, a screenshot does not give any information. Some models can not be opened using standard functionality. But with the help of scripts you can extract any models. Hi again Lazov, thanks for the reply!! I've tried to use a script from a youtube video a...
by EDXZ23
Tue Jul 30, 2019 10:29 pm
Forum: General game tools
Topic: 3D Model Researcher - extract 3D models with Python
Replies: 171
Views: 85901

Re: 3D Model Researcher - extract 3D models with Python

Hi Lazov, I'm having problems getting the faces of a model. There's 8 submeshes but only a small part of the model renders and even that doesn't look right Could you tell me what i'm doing wrong? i'm using 3D Model Researcher Pro Thanks!! P.S i'm loving the tool by the way, keep up the good work 1.p...
by EDXZ23
Tue Jul 23, 2019 3:08 pm
Forum: Game Archive
Topic: BMS script request
Replies: 1
Views: 788

Re: BMS script request