当前位置:   article > 正文

U3D slider控制text文本内容_unity slider text

unity slider text

要实现一个slider控制text内容变化,需要一个组件onValueChanged回调自定义方法
功能:滑块滑动时,文本框内string随之变化

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Events;
using UnityEngine.UI;

public class TextChang : MonoBehaviour {
    public Slider slider;
    public Text text;
    public Toggle tog;
    //UnityAction<float> onSlider;
	// Use this for initialization
    void Awake()          
    {
        slider = GetComponent<Slider>();
        text = transform.Find("txtUseNum").GetComponent<Text>();
    }
	void Start () {
        slider.onValueChanged.AddListener(onSlider);    //当slider数值变化时,回调onSlider方法
	}
	
	// Update is called once per frame
	void Update () {
        
	}

    void onSlider(float value)
    {
        text.text = value.ToString();
        text.text = text.text + "/20";
    }
}
  • 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
  • 28
  • 29
  • 30
  • 31
  • 32

这里写图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/122348
推荐阅读
相关标签
  

闽ICP备14008679号