Unity_1lab/1 laba/Library/PackageCache/com.unity.shadergraph@bd938c0c5e52/Editor/Serialization/FakeJsonObject.cs
Vladislav 23109c3619 Небольшой фикс звуков
-Добавил отдельный звук шага и запахало как надо.
2025-09-16 17:48:42 +03:00

34 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;
}
}
}