From 6257058ae06bfd6ac9231ed1932427bc43818819 Mon Sep 17 00:00:00 2001 From: Maximilian Wagner Date: Wed, 21 Jun 2023 16:14:58 +0200 Subject: [PATCH] Variablen wieder auf public gesetzt --- Assets/AssetsFORELLE/Script/FallingDetection.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/AssetsFORELLE/Script/FallingDetection.cs b/Assets/AssetsFORELLE/Script/FallingDetection.cs index 64a9fe0..58d72d5 100644 --- a/Assets/AssetsFORELLE/Script/FallingDetection.cs +++ b/Assets/AssetsFORELLE/Script/FallingDetection.cs @@ -4,9 +4,9 @@ public class FallingDetection : MonoBehaviour { private CharController charController; private Rigidbody2D playerRigidbody; - private bool isFalling; + public bool isFalling; private Animator animator; - private int counter = 0; + public int counter = 0; private void Start() {