TO SQUASH: Changes.

This commit is contained in:
2026-07-18 23:30:43 -04:00
parent e0c95e192b
commit c7bc76ce98
32 changed files with 3123 additions and 192 deletions
+1
View File
@@ -35,6 +35,7 @@ public class Intro : FadeCallback
}
music.Stop();
faderScript.Invoke("resetFader", 0.0f);
}
private IEnumerator PlayAudioThenActivateGameObject()
+4 -2
View File
@@ -5,7 +5,7 @@ public class IntroSkipper : MonoBehaviour
{
public Intro fadeIn;
public Fader fadeOut;
public Fader fadeOut = null;
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
@@ -24,7 +24,9 @@ public class IntroSkipper : MonoBehaviour
mouse != null && mouse.leftButton.wasPressedThisFrame)
{
fadeIn.forceStopAudioCoroutine();
fadeOut.resetFader();
if (fadeOut != null) {
fadeOut.resetFader();
}
}
}
}