Updated UniJSON

This commit is contained in:
ousttrue
2018-12-21 19:55:43 +09:00
parent 4e0e916404
commit 5e4e5b1069
2 changed files with 3 additions and 3 deletions

View File

@@ -84,7 +84,7 @@ namespace VRM
subFormatter.BeginMap();
foreach (var _kv in node.ObjectItemsRaw)
{
subFormatter.Key(_kv.Key);
subFormatter.Key(_kv.Key.GetUtf8String());
Traverse(_kv.Value, subFormatter, dir);
}
subFormatter.EndMap();
@@ -112,7 +112,7 @@ namespace VRM
f.BeginMap();
foreach (var kv in node.ObjectItemsRaw)
{
f.Key(kv.Key);
f.Key(kv.Key.GetUtf8String());
TraverseItem(kv.Value, f, dir);
}
f.EndMap();