You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
453 B
20 lines
453 B
using System;
|
|
using System.Collections.Generic;
|
|
using UnityEditor.Graphing;
|
|
|
|
namespace UnityEditor.ShaderGraph.Legacy
|
|
{
|
|
[Serializable]
|
|
class AbstractMaterialNode0
|
|
{
|
|
public string m_GuidSerialized;
|
|
|
|
public List<SerializationHelper.JSONSerializedElement> m_SerializableSlots;
|
|
|
|
public string m_PropertyGuidSerialized;
|
|
|
|
public string m_KeywordGuidSerialized;
|
|
|
|
public string m_GroupGuidSerialized;
|
|
}
|
|
}
|