Merge pull request #1622 from 0b5vr/constraint-weight-range

change (1.0, constraint): Change max range of weights to 1.0
This commit is contained in:
ousttrue
2022-04-21 12:40:12 +09:00
committed by GitHub
3 changed files with 3 additions and 3 deletions

View File

@@ -16,7 +16,7 @@ namespace UniVRM10
public Transform Source = default;
[SerializeField]
[Range(0, 10.0f)]
[Range(0, 1.0f)]
public float Weight = 1.0f;
[SerializeField]

View File

@@ -16,7 +16,7 @@ namespace UniVRM10
public Transform Source = default;
[SerializeField]
[Range(0, 10.0f)]
[Range(0, 1.0f)]
public float Weight = 1.0f;
[SerializeField]

View File

@@ -14,7 +14,7 @@ namespace UniVRM10
public Transform Source = default;
[SerializeField]
[Range(0, 10.0f)]
[Range(0, 1.0f)]
public float Weight = 1.0f;
Quaternion _srcRestLocalQuatInverse;