Skip to content
Snippets Groups Projects
Verified Commit 10f76b45 authored by Adrian Paschkowski's avatar Adrian Paschkowski :thinking:
Browse files

Add Documentation to Tutorial Class

parent d715e5f8
No related branches found
No related tags found
No related merge requests found
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
// Controls the Tutorial Messages. Activates the corresponding tutorial message
// and hides all other ones on button click.
public class TutorialMessageController : MonoBehaviour
{
[SerializeField] List<string> keyTut;
......@@ -23,6 +23,7 @@ public class TutorialMessageController : MonoBehaviour
}
}
// Called by the Tutorial Buttons
public void ActivateTutorial(string tutorialType)
{
if ( activeMessage != null)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment