What decides the order in which the various GameObjects in guns that are owned will be added to gunSlots? And how do I influence this?
for (var gun : GameObject in guns)
{
if(gun.GetComponent(GunActivator).owned == true)
gunSlots.Add(gun);
}
Thanks