Skip to content

Instantly share code, notes, and snippets.

@WingmanAlex
WingmanAlex / Tooltip.CS
Last active March 19, 2021 15:13
Tooltip system for the game Fey Foray
using System.Collections;
using System.Collections.Generic;
using TMPro;
using UnityEngine;
using UnityEngine.UI;
[ExecuteInEditMode()]
public class Tooltip : MonoBehaviour
{
public TextMeshProUGUI headerField;
@WingmanAlex
WingmanAlex / FadeInScreen.CS
Last active March 19, 2021 15:15
Menu functionality for the game Fey Foray
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class FadeIn : MonoBehaviour
{
public float fadeTime;
private Image blackScreen;