viewing paste Unknown #44908 | Text

Posted on the
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
 
public class JMA_Text : MonoBehaviour
{
    private Text myText;
    
    //  Call awake so that 
    void Start ()
    {
        //  Grabs the text in the gameObject
        myText = GetComponent<Text>();
    }
    
    // Update is called once per frame
    void Update ()
    {
        //  Destroy text box when done hovering over the button
        if (JMA_HoverText.popupon == "off")
        {
            Destroy(gameObject);
        }
    }
}
 
Viewed 827 times, submitted by Guest.