From f6c5329b2593dcde56cbc03d4319741ed179dc1b Mon Sep 17 00:00:00 2001 From: ousttrue Date: Thu, 27 May 2021 20:35:19 +0900 Subject: [PATCH] fix warn --- Assets/VRM/Runtime/LookAt/CurveMapper.cs | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Assets/VRM/Runtime/LookAt/CurveMapper.cs b/Assets/VRM/Runtime/LookAt/CurveMapper.cs index c18d2c3bb..b5d0a8f3f 100644 --- a/Assets/VRM/Runtime/LookAt/CurveMapper.cs +++ b/Assets/VRM/Runtime/LookAt/CurveMapper.cs @@ -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(); + } } }