mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-10 07:04:36 +00:00
A few more LM3 fixes
This commit is contained in:
parent
ee82fb1218
commit
48af63444c
2 changed files with 2 additions and 4 deletions
|
@ -412,7 +412,7 @@ namespace FirstPlugin.LuigisMansion3
|
|||
chunkEntry.DataFile = File052Data;
|
||||
using (var boneReader = new FileReader(chunkEntry.FileData, true))
|
||||
{
|
||||
currentModel.Skeleton = new STSkeleton();
|
||||
/* currentModel.Skeleton = new STSkeleton();
|
||||
DrawableContainer.Drawables.Add(currentModel.Skeleton);
|
||||
|
||||
uint numBones = chunk.ChunkSize / 0x40;
|
||||
|
@ -454,7 +454,7 @@ namespace FirstPlugin.LuigisMansion3
|
|||
}
|
||||
|
||||
currentModel.Skeleton.reset();
|
||||
currentModel.Skeleton.update();
|
||||
currentModel.Skeleton.update();*/
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
|
|
@ -474,8 +474,6 @@ namespace FirstPlugin.LuigisMansion3
|
|||
|
||||
reader.Position = 0;
|
||||
|
||||
return;
|
||||
|
||||
var meshSize = reader.BaseStream.Length / model.Meshes.Count;
|
||||
for (int i = 0; i < model.Meshes.Count; i++)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue