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

Search found 7 matches

by Segal
Sun May 24, 2020 2:12 am
Forum: General game tools
Topic: 3D Model Researcher - extract 3D models with Python
Replies: 171
Views: 86445

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

If you knew the right vertices offsets and count, usually come after them the normals with float or short_signed and with the same vertices count, and after the normals comes the UVs also with float or short_signed and with the same vertices and normals count, like in the .tmr examples that I gave ...
by Segal
Sat May 23, 2020 2:06 am
Forum: General game tools
Topic: 3D Model Researcher - extract 3D models with Python
Replies: 171
Views: 86445

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

Hi, Perhaps is possible do extract something from these old MDL files? Because I found some verticles, but idk how to do with the faces and UVs :eek: https://www.dropbox.com/s/3jf2kgw3f8nu28t/A10.mdl?dl=0 Hi, Mr. Fiammanera628 , I found on this file 55 models, I was extracted them to obj, also I sa...
by Segal
Fri May 22, 2020 1:55 am
Forum: General game tools
Topic: 3D Model Researcher - extract 3D models with Python
Replies: 171
Views: 86445

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

Hi, Perhaps is possible do extract something from these old MDL files? Because I found some verticles, but idk how to do with the faces and UVs :eek: https://www.dropbox.com/s/3jf2kgw3f8nu28t/A10.mdl?dl=0 Hi, Mr. Fiammanera628 , I found on this file 55 models, I was extracted them to obj, also I sa...
by Segal
Thu May 21, 2020 6:51 pm
Forum: General game tools
Topic: 3D Model Researcher - extract 3D models with Python
Replies: 171
Views: 86445

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

Hi Mr. Lazov, thank you very much for your efforts, finally I found it! :D it's a simple way to convert any model to float or short_signed in all vertices, normals and UVs coordinates, and reimport him to the game again.
by Segal
Sat May 09, 2020 12:55 am
Forum: General game tools
Topic: 3D Model Researcher - extract 3D models with Python
Replies: 171
Views: 86445

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

Please tell me how to do this calculation, this is an example: Float ------> Short_signed Vertices in float: X = 34 80 45 C2 ---- short_signed ----> xx xx Y = C1 F9 65 42 ---- short_signed ----> xx xx Z = 94 F6 76 41 ---- short_signed ----> xx xx UVs in float: X = AD 69 0E 3F ---- short_signed ---->...
by Segal
Fri May 08, 2020 12:56 am
Forum: General game tools
Topic: 3D Model Researcher - extract 3D models with Python
Replies: 171
Views: 86445

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

Thanks Mr. Lazov recently I found a method that can convert the models to float in vertices, normals and UVs. Please can you tell me how can I convert this vertices, normals and UVs from float to short_signed, or another models format that convert obj vertices, normals and UVs to short_signed, or ju...
by Segal
Sat May 02, 2020 11:30 pm
Forum: General game tools
Topic: 3D Model Researcher - extract 3D models with Python
Replies: 171
Views: 86445

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

Hi Mr. Lazov, thanks a lot for 3D Model Researcher, it's a great software. I had extracted some models and I save them to obj, everything working good. But I want to edit those models, and convert them from obj to hex or binary (reversing 3D Model Researcher obj-->hex), and replacing the game models...