Resolve WES-143 "Feedback courses"
This commit is contained in:
committed by
Jerome Coudron
parent
c20cd89c3a
commit
c358ac59e4
@@ -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>
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user