Compare commits

...

4 Commits

Author SHA1 Message Date
427a77ab71 Quizz: Adding final quizz version 2024-02-04 18:49:15 +01:00
8a3b3d6c98 QUIZZ: Resolving merge 2024-02-04 16:02:08 +01:00
48d607dfdf Quizz: Re-arranging scenes 2024-02-02 16:00:50 +01:00
3217569320 QUIZZ: Adding quizz 2024-02-02 09:14:28 +01:00
11 changed files with 197 additions and 57 deletions

View File

@ -24,7 +24,7 @@ MonoBehaviour:
shareRecordingsInITunes: 0
logLevel: 1
version: 10.18.4
eulaAcceptedVersions: '{"Values":["10.17","10.18","0.0","10.15"]}'
eulaAcceptedVersions: '{"Values":["10.17","10.18","0.0","10.15","9.8","10.20","10.19"]}'
database:
disableModelExtraction: 0
shaders:

View File

@ -0,0 +1,39 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class LoadingManager : MonoBehaviour
{
public GameObject LoadingScreen;
public GameObject TutorialScreen;
public GameObject GameScreen;
private bool launched = false;
private bool game = false;
void Start() {
LoadingScreen.GetComponent<Canvas>().enabled = true;
TutorialScreen.GetComponent<Canvas>().enabled = false;
GameScreen.GetComponent<Canvas>().enabled = false;
}
public void LaunchTutorial() {
if (!launched) {
LoadingScreen.GetComponent<Canvas>().enabled = false;
TutorialScreen.GetComponent<Canvas>().enabled = true;
launched = true;
}
}
public void LaunchGame() {
if (!game) {
TutorialScreen.GetComponent<Canvas>().enabled = false;
GameScreen.GetComponent<Canvas>().enabled = true;
game = true;
}
}
public void LeaveApp() {
Application.Quit();
}
}

View File

@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: 1ce983d8b15e46d4491e43d7c8ed2568
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,90 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using TMPro;
[System.Serializable]
public class aQuestion
{
public string aquestion;
public string[] answers;
public int good_answer;
public int type;
}
[System.Serializable]
public class aQuestions
{
public aQuestion[] aquestions;
}
public class QsuizzManager : MonoBehaviour
{
public GameObject LoadingCanvas;
public GameObject TutorialCanvas;
public GameObject aQuestions;
public GameObject Home;
public TextAsset jsonFile;
private bool launched;
private bool started;
private int answer_button;
void Start() {
LoadingCanvas.GetComponent<Canvas>().enabled = true;
TutorialCanvas.GetComponent<Canvas>().enabled = false;
aQuestions.GetComponent<Canvas>().enabled = false;
Home.GetComponent<Canvas>().enabled = false;
launched = false;
started = false;
}
public void ShowTutorial() {
if (!launched) {
LoadingCanvas.GetComponent<Canvas>().enabled = false;
TutorialCanvas.GetComponent<Canvas>().enabled = true;
launched = true;
}
}
public void LaunchQuizz() {
if (!started) {
TutorialCanvas.GetComponent<Canvas>().enabled = false;
Home.GetComponent<Canvas>().enabled = true;
started = true;
}
}
public void LeaveApp() {
Application.Quit();
}
private void YesNoaQuestion(aQuestion aquestion) {
GameObject.Find("aQuestion").GetComponent<TMP_Text>().text = aquestion.aquestion;
GameObject.Find("AnswerA").GetComponentInChildren<TMP_Text>().text = aquestion.answers[0];
GameObject.Find("AnswerB").GetComponentInChildren<TMP_Text>().text = aquestion.answers[1];
GameObject.Find("HidingCanva").GetComponent<Canvas>().enabled = false;
}
private void ClassicaQuestion(aQuestion aquestion) {
GameObject.Find("aQuestion").GetComponent<TMP_Text>().text = aquestion.aquestion;
GameObject.Find("HidingCanva").GetComponent<Canvas>().enabled = true;
GameObject.Find("AnswerA").GetComponentInChildren<TMP_Text>().text = aquestion.answers[0];
GameObject.Find("AnswerB").GetComponentInChildren<TMP_Text>().text = aquestion.answers[1];
GameObject.Find("AnswerC").GetComponentInChildren<TMP_Text>().text = aquestion.answers[2];
GameObject.Find("AnswerD").GetComponentInChildren<TMP_Text>().text = aquestion.answers[3];
}
public void StartQuizz() {
Home.GetComponent<Canvas>().enabled = false;
aQuestions.GetComponent<Canvas>().enabled = true;
aQuestions aquestions = JsonUtility.FromJson<aQuestions>(jsonFile.text);
for (int i = 0; i < aquestions.aquestions.Length; i++) {
aQuestion aquestion = aquestions.aquestions[i];
if (aquestion.type == 0) {
ClassicaQuestion(aquestion);
} else {
YesNoaQuestion(aquestion);
}
}
}
}

View File

@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: b4092beca5e50a24d9c6771c5e5eef64
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -20,71 +20,42 @@ public class Questions
public class QuizzManager : MonoBehaviour
{
public GameObject LoadingCanvas;
public GameObject TutorialCanvas;
public GameObject Questions;
public GameObject Home;
public TextAsset jsonFile;
private bool launched;
private bool started;
private int answer_button;
public GameObject LauncherScreen;
public GameObject GameScreen;
public GameObject Question1;
public GameObject Question2;
public GameObject Question3;
void Start() {
LoadingCanvas.GetComponent<Canvas>().enabled = true;
TutorialCanvas.GetComponent<Canvas>().enabled = false;
Questions.GetComponent<Canvas>().enabled = false;
Home.GetComponent<Canvas>().enabled = false;
launched = false;
started = false;
void Start()
{
LauncherScreen.GetComponent<Canvas>().enabled = true;
GameScreen.GetComponent<Canvas>().enabled = false;
Question1.GetComponent<Canvas>().enabled = true;
Question2.GetComponent<Canvas>().enabled = false;
Question3.GetComponent<Canvas>().enabled = false;
}
public void ShowTutorial() {
if (!launched) {
LoadingCanvas.GetComponent<Canvas>().enabled = false;
TutorialCanvas.GetComponent<Canvas>().enabled = true;
launched = true;
}
public void LaunchGame() {
LauncherScreen.GetComponent<Canvas>().enabled = false;
GameScreen.GetComponent<Canvas>().enabled = true;
}
public void LaunchQuizz() {
if (!started) {
TutorialCanvas.GetComponent<Canvas>().enabled = false;
Home.GetComponent<Canvas>().enabled = true;
started = true;
}
public void LeaveQuizz() {
}
public void LeaveApp() {
Application.Quit();
public void ToQuestion2() {
Question1.GetComponent<Canvas>().enabled = false;
Question2.GetComponent<Canvas>().enabled = true;
}
private void YesNoQuestion(Question question) {
GameObject.Find("Question").GetComponent<TMP_Text>().text = question.question;
GameObject.Find("AnswerA").GetComponentInChildren<TMP_Text>().text = question.answers[0];
GameObject.Find("AnswerB").GetComponentInChildren<TMP_Text>().text = question.answers[1];
GameObject.Find("HidingCanva").GetComponent<Canvas>().enabled = false;
public void ToQuestion3() {
Question2.GetComponent<Canvas>().enabled = false;
Question3.GetComponent<Canvas>().enabled = true;
}
private void ClassicQuestion(Question question) {
GameObject.Find("Question").GetComponent<TMP_Text>().text = question.question;
GameObject.Find("HidingCanva").GetComponent<Canvas>().enabled = true;
GameObject.Find("AnswerA").GetComponentInChildren<TMP_Text>().text = question.answers[0];
GameObject.Find("AnswerB").GetComponentInChildren<TMP_Text>().text = question.answers[1];
GameObject.Find("AnswerC").GetComponentInChildren<TMP_Text>().text = question.answers[2];
GameObject.Find("AnswerD").GetComponentInChildren<TMP_Text>().text = question.answers[3];
}
public void StartQuizz() {
Home.GetComponent<Canvas>().enabled = false;
Questions.GetComponent<Canvas>().enabled = true;
Questions questions = JsonUtility.FromJson<Questions>(jsonFile.text);
for (int i = 0; i < questions.questions.Length; i++) {
Question question = questions.questions[i];
if (question.type == 0) {
ClassicQuestion(question);
} else {
YesNoQuestion(question);
}
}
public void ToHome() {
LauncherScreen.GetComponent<Canvas>().enabled = true;
GameScreen.GetComponent<Canvas>().enabled = false;
}
}

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 8e7e8f5a82a3a134e91c54efd2274ea9
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: cc3244f04212efd42b790b18c736d78a
guid: 1b8d251f9af63b746bf2f7ffe00ebb9b
DefaultImporter:
externalObjects: {}
userData:

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 2c5db3808697d5d42bef016039ab3370
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant: