Implement basic signs course

This commit is contained in:
Dries Van Schuylenbergh
2023-04-19 17:09:11 +02:00
parent db1a72fadd
commit 9422df7083
32 changed files with 1242 additions and 23 deletions

View File

@@ -20,6 +20,7 @@ public class Course : ScriptableObject
/// <summary>
/// A short description of the course
/// </summary>
[TextArea]
public string description;
/// <summary>

View File

@@ -19,6 +19,7 @@ public class Minigame : ScriptableObject
/// <summary>
/// A short description of the minigame
/// </summary>
[TextArea]
public string description;
/// <summary>

View File

@@ -1,6 +1,3 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/// <summary>
/// This enum is used to identify each of the SignLanguage models
/// </summary>
@@ -8,5 +5,5 @@ public enum ModelIndex
{
NONE,
FINGERSPELLING,
BASICSIGNS
BASIC_SIGNS
}

View File

@@ -15,6 +15,7 @@ public class Theme : ScriptableObject
/// <summary>
/// A short description of the theme
/// </summary>
[TextArea]
public string description;
/// <summary>