Skip to content

Commit 4f27113

Browse files
committed
chore: removing debug statements
1 parent 3ef3c8e commit 4f27113

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

Assets/Scripts/Pinpoint/Probes/ProbeManager.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -835,7 +835,6 @@ public void UpdateSurfacePosition()
835835
for (int i = 0; i < 2; i++)
836836
{
837837
Vector3 temporaryTip = tipAtlasIdxU + downDirAtlas * offset[i] * mult / BrainAtlasManager.ActiveReferenceAtlas.Resolution.z;
838-
Debug.Log(temporaryTip);
839838
if (BrainAtlasManager.ActiveReferenceAtlas.GetAnnotationIdx(temporaryTip) > 0)
840839
{
841840
tipInBrain = temporaryTip;
@@ -873,7 +872,6 @@ public void UpdateSurfacePosition()
873872
/// <returns></returns>
874873
public Vector3 FindEntryIdxCoordinate(Vector3 bottomIdxCoordU, Vector3 downVector)
875874
{
876-
Debug.Log(downVector);
877875
float searchDistance = BrainAtlasManager.ActiveReferenceAtlas.Dimensions.z * 1000f / BrainAtlasManager.ActiveReferenceAtlas.Resolution.z;
878876
Vector3 topSearchIdxCoordU = bottomIdxCoordU - downVector * searchDistance;
879877

@@ -889,7 +887,6 @@ public Vector3 FindEntryIdxCoordinate(Vector3 bottomIdxCoordU, Vector3 downVecto
889887
Vector3 point = Vector3.Lerp(topSearchIdxCoordU, bottomIdxCoordU, perc);
890888
if (BrainAtlasManager.ActiveReferenceAtlas.GetAnnotationIdx(point) > 0)
891889
{
892-
Debug.Log(point);
893890
finalPerc = perc;
894891
break;
895892
}
@@ -902,7 +899,6 @@ public Vector3 FindEntryIdxCoordinate(Vector3 bottomIdxCoordU, Vector3 downVecto
902899
Vector3 point = Vector3.Lerp(topSearchIdxCoordU, bottomIdxCoordU, perc);
903900
if (BrainAtlasManager.ActiveReferenceAtlas.GetAnnotationIdx(point) <= 0)
904901
{
905-
Debug.Log(point);
906902
return point;
907903
}
908904
}

0 commit comments

Comments
 (0)