Resolve WES-166 "Activity endscene"

This commit is contained in:
Jelle De Geest
2023-05-14 10:58:43 +00:00
committed by Louis Adriaens
parent 1e09f09dae
commit 9b88537d70
21 changed files with 9752 additions and 4005 deletions

View File

@@ -72,7 +72,7 @@ public class ChangeUserScreen : MonoBehaviour
Image background = instance.GetComponent<Image>();
userBackgrounds.Add(background);
// Set background color
background.color = i == currentUserIndex ? Color.blue : Color.gray;
background.color = i == currentUserIndex ? new Color(66 / 255f, 158 / 255f, 189 / 255f, 1f) : Color.gray;
}
}
@@ -84,7 +84,7 @@ public class ChangeUserScreen : MonoBehaviour
{
userBackgrounds[currentUserIndex].color = Color.gray;
currentUserIndex = index;
userBackgrounds[currentUserIndex].color = Color.blue;
userBackgrounds[currentUserIndex].color = new Color(66 / 255f, 158 / 255f, 189 / 255f, 1f);
}
/// <summary>