Identifier.cs 695 B

12345678910111213141516171819202122232425262728293031323334353637
  1. namespace UnityEditor.ShaderGraph
  2. {
  3. struct Identifier
  4. {
  5. uint m_Version;
  6. int m_Index;
  7. public Identifier(int index, uint version = 1)
  8. {
  9. m_Version = version;
  10. m_Index = index;
  11. }
  12. public void IncrementVersion()
  13. {
  14. if (m_Version == uint.MaxValue)
  15. m_Version = 1;
  16. else
  17. m_Version++;
  18. }
  19. public uint version
  20. {
  21. get { return m_Version; }
  22. }
  23. public int index
  24. {
  25. get { return m_Index; }
  26. }
  27. public bool valid
  28. {
  29. get { return m_Version != 0; }
  30. }
  31. }
  32. }