I know the range attribute constricts a field to a minimum and maximum value like:
[Range(0, 100)]
public float cur;
but, I want to achieve the following:
public float min = 0;
public float max = 100;
[Range(min, max)]
public float cur;
Is it possible?