WuhuIslandTesting/Library/PackageCache/com.unity.shadergraph@8148.12.1-8/Editor/Serialization/FakeJsonObject.cs
2025-01-07 02:06:59 +01:00

33 lines
583 B
C#

using System;
using UnityEngine;
namespace UnityEditor.ShaderGraph.Serialization
{
[Serializable]
public class FakeJsonObject
{
[SerializeField]
string m_Type;
[SerializeField]
string m_ObjectId;
public string id
{
get => m_ObjectId;
set => m_ObjectId = value;
}
public string type
{
get => m_Type;
set => m_Type = value;
}
public void Reset()
{
m_ObjectId = null;
m_Type = null;
}
}
}