Skip to content
Snippets Groups Projects
Select Git revision
  • 507b00c0d2d8b70dde7541d48685d5b7f453bfaf
  • main default
  • master
  • tempAndrToMaster
4 results

Fact.cs

Blame
  • RenderedScrollFact.cs 439 B
    using System.Collections;
    using System.Collections.Generic;
    using TMPro;
    using UnityEngine;
    
    public class RenderedScrollFact : MonoBehaviour
    {
    
        public int ID;
        public TextMeshProUGUI LabelMesh;
        private string _label;
    
        public string Label
        {
            get { return _label; }
            set
            {
                if (_label == value) return;
                _label = value;
                LabelMesh.text = value;
            }
        }
    
    }