소스 검색

去掉一段日志

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)