Exemplo n.º 1
0
 public void setGrab(float grab)
 {
     parameter.SetToPersent(isReverse ? (1f - grab) : grab);
 }
 public void setParamPersent(float input)
 {
     parameter.SetToPersent((isReverse ? (1f - input) : input) * (max - min) + min);
 }