Remove debug log in MovableFurniture

This commit is contained in:
Legonzaur 2023-01-16 13:33:00 +01:00
parent 414d1eec0e
commit b92ba002b2

View File

@ -98,7 +98,6 @@ public class MovableFurniture : MonoBehaviour
//displacement.z -= (0 % 2 == 1 ? -1 : 1) * (2*combinedBounds.size.z - (hit.distance));
displacement.z -= (combinedBounds.size.z - (hit.distance));
}*/
Debug.Log(displacement);
this.transform.Translate(displacement, Space.World);
}