Skip to content

Commit

Permalink
more logs disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
bozmir committed Dec 20, 2024
1 parent 75fb83b commit 00556d4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Assets/Scripts/KerstSpecial/RaceController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,8 @@ private void Jump(bool jump)

private void OnEnter(Collider other, ZoneTrigger zone)
{
Debug.Log("ONENTER" + other);
Debug.Log("zonenaam" + zone);
//Debug.Log("ONENTER" + other);
//Debug.Log("zonenaam" + zone);
if (zone.name == "zonetrigger2")
{
WeatherAnimator.SetBool("Storm", true);
Expand All @@ -209,7 +209,7 @@ private void OnEnter(Collider other, ZoneTrigger zone)

private void OnExit(Collider other, ZoneTrigger zone)
{
Debug.Log("ONEXIT:" + other);
//Debug.Log("ONEXIT:" + other);
if (zone.name == "zonetrigger2")
{
WeatherAnimator.SetBool("Storm", false);
Expand Down Expand Up @@ -517,7 +517,7 @@ public void GetClosestTileAndUpdateCollider(Vector3 position, out bool isGrounde
{
t.gameObject.AddComponent<MeshCollider>();
t.gameObject.isStatic = true;
Debug.Log("ADDED MESHCOLLIDER FOR" + tileName);
//Debug.Log("ADDED MESHCOLLIDER FOR" + tileName);
}

}
Expand Down

0 comments on commit 00556d4

Please sign in to comment.