瀏覽代碼

去掉一段日志

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)