Sampah kumpulkan setiap 30 frame persatuan

if (Time.frameCount % 30 == 0)
{
	System.GC.Collect();
}
ThePokedNoob