فهرست منبع

去掉一段日志

zhengchen 1 سال پیش
والد
کامیت
05d3b3d188
1فایلهای تغییر یافته به همراه0 افزوده شده و 1 حذف شده
  1. 0 1
      Assets/Scripts/Comp/CockMoveComp.cs

+ 0 - 1
Assets/Scripts/Comp/CockMoveComp.cs

@@ -67,7 +67,6 @@ namespace Comp
         {
             if (!_isMoving) return;
             var movingVector = CreateMovingVector(MovingSpeed);
-            Debug.Log("moving vector is " + movingVector.x + ", " + movingVector.y + ", " + movingVector.z);
             transform.position += movingVector * Time.deltaTime;
             _movingTime -= Time.deltaTime;
             if (_movingTime <= 0)