Created
May 24, 2023 06:22
-
-
Save daniele-quero/d0930954c52b2c33fc0335f42ccafb27 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class SliderToText : MonoBehaviour | |
{ | |
private Slider _slider; | |
public TextMeshProUGUI label; | |
void Start() | |
{ | |
_slider = GetComponent<Slider>(); | |
_slider.value = 69; | |
} | |
public void SetTextOnChange() | |
{ | |
label.text = _slider.value.ToString(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment