This commit is contained in:
DerTyp187
2021-10-07 19:08:00 +02:00
parent ddd0b98b70
commit e058b1ce5b
21 changed files with 745 additions and 5 deletions

View File

@@ -121,7 +121,7 @@ public class BuildingBlueprint : MonoBehaviour
isColliding = true;
}
Debug.Log("Colliding True");
// Debug.Log("Colliding True");
}
public void OnTriggerStay(Collider other)
{
@@ -129,7 +129,7 @@ public class BuildingBlueprint : MonoBehaviour
{
isColliding = true;
}
Debug.Log("Colliding True");
// Debug.Log("Colliding True");
}
public void OnTriggerExit(Collider other)
{
@@ -137,6 +137,6 @@ public class BuildingBlueprint : MonoBehaviour
{
isColliding = false;
}
Debug.Log("Colliding False");
// Debug.Log("Colliding False");
}
}