1
0
mirror of synced 2025-01-31 12:23:52 +01:00

Add texture names to ptcl wii u textures

This commit is contained in:
KillzXGaming 2019-03-29 17:53:49 -04:00
parent 92642d165b
commit 3c9e93b411
4 changed files with 5 additions and 0 deletions

Binary file not shown.

View File

@ -170,9 +170,14 @@ namespace FirstPlugin
emitterSets.Add(emitterSet);
groupEmitterSets.Nodes.Add(emitterSet);
}
int index = 0;
foreach (var tex in Textures)
{
tex.Text = $"Texture{index++}";
textureFolder.Nodes.Add(tex);
}
}
public void Write(FileWriter writer, PTCL ptcl)
{
writer.ByteOrder = ByteOrder.BigEndian;