-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added Phys File Type, Added more M2 chunks (some unfinished), changed some smaller things #11
Conversation
@@ -0,0 +1,54 @@ | |||
using System; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove Mat3x4 because we now have a Matrix3x4 class
{ | ||
public enum BodyType : ushort | ||
{ | ||
root = 0, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All keys in a Enum need to be started with a upper letter
{ | ||
public enum JointType : ushort | ||
{ | ||
sphericalJoint = 0, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All keys in a Enum need to be started with a upper letter
{ | ||
public enum ShapeType : short | ||
{ | ||
box = 0, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All keys in a Enum need to be started with a upper letter
bw.Write((uint)PLYTEntries.Count); | ||
foreach (PLYTEntry obj in PLYTEntries) | ||
{ | ||
Console.WriteLine("Writing Plyt Header Length: " + obj.SerializeHeader().Length); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove Console.WriteLine the lib dont write anything into the console
/// <summary> | ||
/// Holds the binary chunk signature. | ||
/// </summary> | ||
public const string Signature = "EXP2"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wrong Signature need to be EXPT
Warcraft.NET/Files/SKIN/Skin.cs
Outdated
/// </summary> | ||
public byte[] Unk0; | ||
|
||
public bool Wotlk = false; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Implement versioning via one file per version and inheritance, maybe check how WDL is versioned.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good Work there are only some small things are missing
- https://github.com/ModernWoWTools/Warcraft.NET/pull/11/files#r1713338913
- https://github.com/ModernWoWTools/Warcraft.NET/pull/11/files#r1713350960
- https://github.com/ModernWoWTools/Warcraft.NET/pull/11/files#r1713371341
- https://github.com/ModernWoWTools/Warcraft.NET/pull/11/files#r1713382194
- https://github.com/ModernWoWTools/Warcraft.NET/pull/11/files#r1713382463
- https://github.com/ModernWoWTools/Warcraft.NET/pull/11/files#r1713384484
- https://github.com/ModernWoWTools/Warcraft.NET/pull/11/files#r1714349384
- https://github.com/ModernWoWTools/Warcraft.NET/pull/11/files#r1714351333
- https://github.com/ModernWoWTools/Warcraft.NET/pull/11/files#r1714353567
- https://github.com/ModernWoWTools/Warcraft.NET/pull/11/files#r1714354357
- https://github.com/ModernWoWTools/Warcraft.NET/pull/11/files#r1746858870
- https://github.com/ModernWoWTools/Warcraft.NET/pull/11/files#r1746871143
- https://github.com/ModernWoWTools/Warcraft.NET/pull/11/files#r1746871299
- https://github.com/ModernWoWTools/Warcraft.NET/pull/11/files#r1746871399
- https://github.com/ModernWoWTools/Warcraft.NET/pull/11/files#r1746889874
- https://github.com/ModernWoWTools/Warcraft.NET/pull/11/files#r1746897251
- https://github.com/ModernWoWTools/Warcraft.NET/pull/11/files#r1746907965
No description provided.