Resolve WES-143 "Feedback courses"

This commit is contained in:
Helena Van Breugel
2023-04-04 18:24:17 +00:00
committed by Jerome Coudron
parent c20cd89c3a
commit c358ac59e4
115 changed files with 11331 additions and 1116 deletions

View File

@@ -18,6 +18,16 @@ public class Learnable
/// </summary>
public Sprite image;
/// <summary>
/// Sprite of the hand gesture used for fingerspelling
/// </summary>
public Sprite handGuide = null;
/// <summary>
/// Addaptive threshold
/// </summary>
public float thresholdPrecentage = 0.90f;
/// <summary>
/// Example video clip
/// </summary>

View File

@@ -20,7 +20,7 @@ public class Theme : ScriptableObject
/// <summary>
/// Index of the theme
/// </summary>
public ThemeIndex index;
public ThemeIndex themeIndex;
/// <summary>
/// The index of the model you want to use

View File

@@ -24,6 +24,6 @@ public class ThemeList : ScriptableObject
/// <param name="title"></param>
public void SetCurrentTheme(ThemeIndex index)
{
this.currentThemeIndex = themes.FindIndex((mi) => mi.index == index);
this.currentThemeIndex = themes.FindIndex((mi) => mi.themeIndex == index);
}
}