Chromium 462bf4ffc0 Added Single Channel Node and Get Dimensions
As well as various bug fixes
2025-04-26 23:26:24 +01:00

23 lines
364 B
C#

using System;
using UnityEngine.UIElements;
namespace ImageProcessingGraph.Editor
{
[Serializable]
public class GreyscaleValue
{
public int value = 255;
public GreyscaleValue()
{
}
}
public class GreyscaleField : IntegerField
{
public (int, int) minMax = (0,255);
}
}