23 lines
364 B
C#
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);
|
|
}
|
|
|
|
|
|
} |