Newer
Older
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
/// <summary>
/// This class handles displaying Fact tooltips, when hovering over a fact in the Gameworld
/// </summary>
public class WorldFactInteraction : MonoBehaviour
{
public LayerMask factLayerMask;
public Transform HidingCanvas;
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
private GameObject currentDisplay;
private Transform lastHit = null;
void LateUpdate()
{
if (currentDisplay != null && currentDisplay.GetComponent<DragHandling>().dragged)
{
// currently dragging -> remove transparency to indicate dragging and let DragHandling.cs take over
ChangeImageAlpha(currentDisplay.GetComponent<Image>(), 1);
return;
}
UpdateDisplay();
}
private void UpdateDisplay()
{
Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);
if (!Physics.Raycast(ray, out RaycastHit hit, Mathf.Infinity, factLayerMask)) // check if fact was hit
{
lastHit = null;
Destroy(currentDisplay); // nothing was hit -> destroy currentDisplay if it exists
return;
}
FactObject factObj = hit.transform.gameObject.GetComponentInChildren<FactObject>();
if (factObj == null)
{
// should never happen, if the layerMask is set up correctly
Debug.LogError("WorldFactInteraction Raycast collided with object in factLayerMask, that did not contain a FactObject script: " + hit.transform.gameObject.name);
lastHit = null;
return;
}
if (hit.transform != lastHit) // a fact has been hit for the first time -> delete old display and instantiate new one
{
InstantiateNewDisplay(factObj);
}
currentDisplay.transform.position = Input.mousePosition; // move currentDisplay to mousePosition
ChangeImageAlpha(currentDisplay.GetComponent<Image>(), 0.5f); // ensure that image alpha is correct, since it could have changed due to dragging
lastHit = hit.transform;
}
private void InstantiateNewDisplay(FactObject factObj)
{
if (currentDisplay)
Destroy(currentDisplay);
Fact fact = StageStatic.stage.factState[factObj.URI];
// TODO: this link to DisplayFacts is not ideal: maybe refactor to SciptableObject or such
currentDisplay = fact.instantiateDisplay(DisplayFacts.prefabDictionary[fact.GetType()], HidingCanvas);