mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-09-13 06:20:01 -05:00
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:
@@ -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]
|
||||
|
||||
@@ -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]
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user