mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-08-25 12:05:08 -05:00
Updated UniJSON
This commit is contained in:
@@ -50,7 +50,7 @@ namespace VRM
|
||||
try
|
||||
{
|
||||
var titleNode = node["title"];
|
||||
if (titleNode.IsString)
|
||||
if (titleNode.IsString())
|
||||
{
|
||||
return titleNode.GetString();
|
||||
}
|
||||
@@ -98,7 +98,7 @@ namespace VRM
|
||||
|
||||
static void Traverse(JsonNode node, JsonFormatter f, UnityPath dir)
|
||||
{
|
||||
if (node.IsArray)
|
||||
if (node.IsArray())
|
||||
{
|
||||
f.BeginList();
|
||||
foreach (var x in node.ArrayItemsRaw)
|
||||
@@ -107,7 +107,7 @@ namespace VRM
|
||||
}
|
||||
f.EndList();
|
||||
}
|
||||
else if (node.IsMap)
|
||||
else if (node.IsMap())
|
||||
{
|
||||
f.BeginMap();
|
||||
foreach (var kv in node.ObjectItemsRaw)
|
||||
|
||||
2
UniGLTF
2
UniGLTF
Submodule UniGLTF updated: 04981a33a7...4697932351
Reference in New Issue
Block a user