Rename QuestlogInteractable

This commit is contained in:
2023-07-08 20:03:21 +02:00
parent 6b6c3cf49f
commit 34fb3715f3
4 changed files with 123 additions and 37 deletions

59
Assets/Scripts/Journal.cs Normal file
View File

@@ -0,0 +1,59 @@
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using TMPro;
using UnityEngine;
public class QuestLogInteractable : MonoBehaviour
{
public GameObject journal;
public PlayerController playerController;
private List<CharacterData> m_availableAdventurers = new List<CharacterData>();
public Transform adventurerPage;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
private void OnMouseDown()
{
Debug.Log("MOUSE DOWN ON INVENTORY");
foreach (var character in CharacterManager.Instance.CharacterDatas)
{
if (CharacterManager.Instance.CharacterInterviewed(character.name)) {
m_availableAdventurers.Append(character);
}
}
journal.SetActive(true);
if (m_availableAdventurers.Count > 0)
{
SetJournalAdventurerPage(0);
adventurerPage.gameObject.SetActive(true);
}
playerController.cameraMovement = false;
}
public void CloseJournal()
{
journal.SetActive(false);
adventurerPage.gameObject.SetActive(false);
playerController.cameraMovement = true;
}
public void SetJournalAdventurerPage(int id)
{
CharacterData chara = m_availableAdventurers[id];
TMP_Text nameLabel = adventurerPage.Find("AdventurerName").gameObject.GetComponent<TMP_Text>();
nameLabel.text = chara.m_name;
}
}