Firstborn/Library/PackageCache/com.unity.shadergraph@12.1.11/Editor/Data/Util/Identifier.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

38 lines
695 B
C#

namespace UnityEditor.ShaderGraph
{
struct Identifier
{
uint m_Version;
int m_Index;
public Identifier(int index, uint version = 1)
{
m_Version = version;
m_Index = index;
}
public void IncrementVersion()
{
if (m_Version == uint.MaxValue)
m_Version = 1;
else
m_Version++;
}
public uint version
{
get { return m_Version; }
}
public int index
{
get { return m_Index; }
}
public bool valid
{
get { return m_Version != 0; }
}
}
}