This commit is contained in:
SoulliesOfficial
2025-12-12 11:09:39 -05:00
parent e5d0851aae
commit 07f3511133
42 changed files with 74315 additions and 26468 deletions

View File

@@ -11,7 +11,7 @@ namespace Ichni.UI
{
public AudioContainer audioContainer;
public List<ParticleSystem> logoParticles;
//public List<ParticleSystem> logoParticles;
public ParticleSystem floatingParticles;
public GameObject peWarningWindow;
@@ -31,7 +31,6 @@ namespace Ichni.UI
peWarningSequence.AppendCallback(() =>
{
peWarningWindow.SetActive(false);
logoParticles.ForEach(p => p.Play());
floatingParticles.Play();
});
peWarningSequence.Play();
@@ -42,10 +41,6 @@ namespace Ichni.UI
audioContainer.PlaySoundFX("TouchToStart");
FadeOut();
foreach (ParticleSystem particle in logoParticles)
{
particle.GetComponent<Renderer>().material.DOFloat(0f, "_MainAlpha", 0.5f).Play();
}
floatingParticles.GetComponent<Renderer>().material.DOColor(Color.clear, "_BaseColor", 0.5f).Play();