mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-08-20 01:25:45 -05:00
remove comment out
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user