This commit is contained in:
esteb
2023-01-20 12:32:40 +01:00
parent 09cc8c87e3
commit 46ea5867d7
10 changed files with 707 additions and 2 deletions

View File

@@ -12,6 +12,7 @@ public class DialogueScript : MonoBehaviour
private GameObject image;
private GameObject textImage;
public GameObject arrow;
public List<GameObject> imageAndTexts;
private int indexList = 0;
@@ -71,6 +72,7 @@ public class DialogueScript : MonoBehaviour
else
{
gameObject.SetActive(false);
arrow.SetActive(true);
}
}

View File

@@ -14,6 +14,7 @@ public class SwipeManagementScript : MonoBehaviour
public GameObject arrowLeft;
public GameObject arrowRight;
//public GameObject arrow;
public Animator m_Animator;