Firstborn/Library/PackageCache/com.unity.shadergraph@12.1.11/Editor/Serialization/MultiJson.cs
Schaken-Mods 9092858a58 updated to the latest editor
I updated everything to the latest Unity Editor. Also realized I had the wrong shaders on my hairs, those are fixed and the hairs look MUCH better!
2023-05-07 17:43:11 -05:00

29 lines
854 B
C#

using System;
using UnityEngine;
namespace UnityEditor.ShaderGraph.Serialization
{
static class MultiJson
{
public static void Deserialize<T>(T objectToOverwrite, string json, JsonObject referenceRoot = null, bool rewriteIds = false) where T : JsonObject
{
var entries = MultiJsonInternal.Parse(json);
if (referenceRoot != null)
{
MultiJsonInternal.PopulateValueMap(referenceRoot);
}
MultiJsonInternal.Deserialize(objectToOverwrite, entries, rewriteIds);
}
public static string Serialize(JsonObject mainObject)
{
return MultiJsonInternal.Serialize(mainObject);
}
public static Type ParseType(string typeString)
{
return MultiJsonInternal.ParseType(typeString);
}
}
}