1
Fork 0
mirror of https://github.com/Steffo99/better-tee.git synced 2024-11-22 15:24:18 +00:00
better-tee/Assets/Drawing/Scripts/RadiusSlider.cs

21 lines
369 B
C#
Raw Normal View History

2019-09-10 15:01:29 +00:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
2019-09-11 13:13:31 +00:00
public class RadiusSlider : MonoBehaviour
2019-09-10 15:01:29 +00:00
{
public PencilTool pencil;
protected Slider slider;
protected void Start() {
slider = GetComponent<Slider>();
}
public void OnValueChange()
{
pencil.size = slider.value;
}
}