Skip to content

Commit

Permalink
Write some missing assets
Browse files Browse the repository at this point in the history
  • Loading branch information
ihatecompvir committed Jan 8, 2025
1 parent 5151017 commit b6e5218
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions MiloLib/Assets/DirectoryMeta.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1084,6 +1084,9 @@ public void WriteEntry(EndianWriter writer, DirectoryMeta.Entry entry)
case "BandConfiguration":
((BandConfiguration)entry.obj).Write(writer, true, this, entry);
break;
case "BandLabel":
((BandLabel)entry.obj).Write(writer, true, this, entry);
break;
case "BandPlacer":
((BandPlacer)entry.obj).Write(writer, true, this, entry);
break;
Expand Down Expand Up @@ -1111,6 +1114,9 @@ public void WriteEntry(EndianWriter writer, DirectoryMeta.Entry entry)
case "Group":
((RndGroup)entry.obj).Write(writer, true, this, entry);
break;
case "InlineHelp":
((InlineHelp)entry.obj).Write(writer, true, this, entry);
break;
case "Light":
((RndLight)entry.obj).Write(writer, true, this, entry);
break;
Expand Down Expand Up @@ -1152,6 +1158,9 @@ public void WriteEntry(EndianWriter writer, DirectoryMeta.Entry entry)
case "UIColor":
((UIColor)entry.obj).Write(writer, true, this, entry);
break;
case "UIComponent":
((UIComponent)entry.obj).Write(writer, true, this, entry);
break;
// re-enable when the class is 100%
//case "CharClip":
// Debug.WriteLine("Reading entry CharClip " + entry.name.value);
Expand Down

0 comments on commit b6e5218

Please sign in to comment.