This is a read only copy without any forum functionality of the old Modcraft forum.
If there is anything that you would like to have removed, message me on Discord via Kaev#5208.
Big thanks to Alastor for making this copy!
Home
Forum
Modcraft - The community dedicated to quality WoW modding!
Forum
Content creation
Modelling and Animation
[TUTORIAL] Here is how WoD .skin works.
Menu
Discord
Tutorials
Links
WowDev wiki
Print
Pages: [
1
]
Author
Topic: [TUTORIAL] Here is how WoD .skin works. (Read 3334 times)
Vesageough
Contributors
Polygonshifter
Posts: 51
[TUTORIAL] Here is how WoD .skin works.
«
on:
January 26, 2015, 05:03:33 pm »
Hello,
After looking at Rangorn posts, I've found how the WoD .skin files work.
010 Editor Templates updated (.WoD skin + M2 light, with mesh and texture info only):
http://www.mediafire.com/download/nx8os47rd17bs30/WoD_010_Editor_Templates_6.0.3.zip
How to use 010 Editor Templates:
http://www.sweetscape.com/010editor/manual/OptionsTemplates.htm
http://www.sweetscape.com/010editor/manual/Running.htm
They used a trick to go over the 65536 limit of the StartTriangle field.
Now, there is also a Level field. It is set to 0, then, when StartTriangle resets from 65000+ to 0+, Level is set to
1
.
Mesh part IDs:
http://www.wowdev.wiki/index.php?title=M2/WotLK/.skin#Mesh_part_ID
1. submesh:
- ID: Mesh part ID
- Level: 0
- startTriangle: (startTriangle + nTriangles) of previous Submesh.
- nTriangles: number of triangles.
2. if ((startTriangle + nTriangles) of previous Submesh) > 65535:
- ID: Mesh part ID
- Level:
1
- startTriangle: ((startTriangle + nTriangles) of previous Submesh) -
65536
. (resets)
ex:
1.
- ID: 13
- Level: 0
- startTriangle: 64272
- nTriangles: 1356
= 64272 + 1356 = 65628
2.
- ID: 14
- Level:
1
- startTriangle: 92 (65628 -
65536
) (resets)
- nTriangles: 1083
«
Last Edit: February 03, 2015, 04:59:21 am by Admin
»
Logged
M2mod Redux 4.6.1
-
WoW Blender Tutorials (videos)
Rangorn
Contributors
Model Change Addict
Posts: 291
Re: [TUTORIAL] Here is how WoD .skin works.
«
Reply #1 on:
January 27, 2015, 09:06:21 am »
Thanks for doing this !
I hope people will check this before asking always the same questions.
«
Last Edit: January 01, 1970, 01:00:00 am by Admin
»
Logged
Vesageough
Contributors
Polygonshifter
Posts: 51
Re: [TUTORIAL] Here is how WoD .skin works.
«
Reply #2 on:
February 03, 2015, 04:54:55 am »
Added new 010 Editor .skin template and updated the tutorial in the first post.
«
Last Edit: January 01, 1970, 01:00:00 am by Admin
»
Logged
M2mod Redux 4.6.1
-
WoW Blender Tutorials (videos)
Print
Pages: [
1
]
Modcraft - The community dedicated to quality WoW modding!
Forum
Content creation
Modelling and Animation
[TUTORIAL] Here is how WoD .skin works.