fix: 去掉ChanraoTuibuHandler中残留的f变量

This commit is contained in:
yangbear
2026-07-03 14:40:18 +08:00
parent 9c99cbee78
commit 0e35ff22c8
@@ -52,7 +52,7 @@ public class ChanraoTuibuHandler : MonoBehaviour
Vector3 p1 = new Vector3(ctr.x - ext.x, y, ctr.z + ext.z);
Vector3 p2 = new Vector3(ctr.x + ext.x, y, ctr.z + ext.z);
Vector3 p3 = new Vector3(ctr.x + ext.x, y, ctr.z - ext.z);
Debug.Log($"[{f}] 边框 bounds: center={ctr} extents={ext} y={y}");
Debug.Log($"[{name}] 边框 bounds: center={ctr} extents={ext} y={y}");
_outlineRenderer.positionCount = 5;
_outlineRenderer.SetPosition(0, p0);
_outlineRenderer.SetPosition(1, p1);