mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-13 22:09:53 -05:00
Updated UniJSON
This commit is contained in:
parent
4e0e916404
commit
5e4e5b1069
|
|
@ -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();
|
||||
|
|
|
|||
2
UniGLTF
2
UniGLTF
|
|
@ -1 +1 @@
|
|||
Subproject commit 1ac4db95e304d19f4194ff52aa6fe2260493e783
|
||||
Subproject commit b1081eecf8c8e34869316619e64482bbd2848f9a
|
||||
Loading…
Reference in New Issue
Block a user