Resolve WES-192 "Fix progress screen"

This commit is contained in:
Dries Van Schuylenbergh
2023-05-04 09:09:49 +00:00
parent 259259ac9c
commit 89f343780a
34 changed files with 4330 additions and 496 deletions

View File

@@ -76,7 +76,7 @@ public class CourseActivityScreen : MonoBehaviour
title.text = course.title;
description.text = course.description;
courseImage.sprite = course.thumbnail;
//slider.value = progressValue;
//progressBar.value = progressValue;
// Set progress
PersistentDataController.GetInstance().Load();

View File

@@ -38,7 +38,7 @@ public class CourseItem : MonoBehaviour
public Button button;
/// <summary>
/// Reference to the slider that displays the progress of the user
/// Reference to the progressBar that displays the progress of the user
/// </summary>
public GameObject slider;