massive number of fixes, removed compilation error, logs, negative scale issues, serialization issues ETC

This commit is contained in:
2024-11-25 15:15:55 +01:00
parent 48d565f77e
commit 8d766ed470
48 changed files with 1442 additions and 2434 deletions

View File

@@ -27,7 +27,7 @@ public class UIImageFader : MonoBehaviour
// Method to start the fade process
public void StartFade()
{
if (!isFading)
if (!isFading && gameObject.activeInHierarchy && enabled)
{
StartCoroutine(FadeRoutine());
}