mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-15 07:00:10 -05:00
remove comment out
This commit is contained in:
parent
7e0e235147
commit
2d554fbf62
|
|
@ -57,11 +57,6 @@ namespace UniVRM10
|
|||
var backup = Gizmos.matrix;
|
||||
Gizmos.matrix = Matrix4x4.identity;
|
||||
VRM10SpringBoneJoint lastJoint = Joints[0];
|
||||
// if (lastJoint != null)
|
||||
// {
|
||||
// const float f = 0.005f;
|
||||
// Gizmos.DrawCube(lastJoint.transform.position, new Vector3(f, f, f));
|
||||
// }
|
||||
for (int i = 1; i < Joints.Count; ++i)
|
||||
{
|
||||
var joint = Joints[i];
|
||||
|
|
@ -69,7 +64,6 @@ namespace UniVRM10
|
|||
if (joint != null && lastJoint != null)
|
||||
{
|
||||
Gizmos.DrawLine(lastJoint.transform.position, joint.transform.position);
|
||||
// Gizmos.DrawWireSphere(joint.transform.position, lastJoint.m_jointRadius);
|
||||
}
|
||||
lastJoint = joint;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user