diff --git a/MeL/Interpolator/MeLInterp.cs b/MeL/Interpolator/MeLInterp.cs index d6e2a81..586811a 100644 --- a/MeL/Interpolator/MeLInterp.cs +++ b/MeL/Interpolator/MeLInterp.cs @@ -28,7 +28,7 @@ namespace OTDPlugins.MeL public int Complexity { set => Core.Complexity = value; } [Property("Weight")] - public int Weight { set => Core.Weight = value; } + public float Weight { set => Core.Weight = value; } private readonly MLCore Core = new MLCore(); }