Merge pull request #985 from ousttrue/fix_curvemap_warn

fix warn
This commit is contained in:
PoChang007
2021-05-27 21:27:01 +09:00
committed by GitHub

View File

@@ -17,12 +17,6 @@ namespace VRM
[Range(0, 90.0f)]
public float CurveYRangeDegree;
/*
public CurveMapper() : this(90.0f, 10.0f)
{
}
*/
public CurveMapper(float xRange, float yRange)
{
CurveXRangeDegree = xRange;
@@ -93,5 +87,10 @@ namespace VRM
}
return base.Equals(obj);
}
public override int GetHashCode()
{
return base.GetHashCode();
}
}
}