My project displays Grenade action button first… the lecture video shows it as the last button. Any idea how to set the display order?
I’m thinking it would be a Sort of actionButtonUIList before the foreach below, but that doesn’t explain the difference in my project and the lecture…
private void UpdateSelectedVisual()
{
foreach (ActionButtonUI actionButtonUI in actionButtonUIList)
{
actionButtonUI.UpdateSelectedVisual();
}
}