Destroy textures when slideshow is finished

This commit is contained in:
Nadine Ganz 2025-03-26 15:02:50 +01:00
parent c97ccef80c
commit bda97c2583

View File

@ -59,6 +59,14 @@ public class PhotoTransition : MonoBehaviour
public void Reset()
{
foreach (var texture in _imgList)
{
if (texture != null)
{
Destroy(texture);
}
}
_imgList.Clear();
_state = 0;
}