Unity小功能记录(一)------ 色环与拾取颜色(圆形Slider)

最近有个需求,一个圆环图片要移动拾取色环上的颜色,具体效果如:

                                        Unity小功能记录(一)------ 色环与拾取颜色(圆形Slider)_第1张图片

圆环slider移动参考:https://blog.csdn.net/shenmifangke/article/details/53582505

但是该博主的有一点小BUG,到边界(0度与360度转换)会飘一下,下文放出的资源链接已经修改了


主要代码如下:

using UnityEngine;
using System.Collections;
using UnityEngine.EventSystems;
using UnityEngine.UI;


public class ArcSlider : MonoBehaviour, IPointerEnterHandler, IPointerExitHandler, IPointerDownHandler, IPointerUpHandler
{
    public Texture2D heatMapImage;
    public Color32 outputColor;
    public Image handleButton;
    float circleRadius = 0.0f;
    bool isPointerDown = false;
    public Text showColor;
    //忽略圈内的交互
    public float ignoreInTouchRadiusHandleOffset = 10;
    Vector3 handleButtonLocation;
    [Tooltip("初始角度到终止角度")]
    public float firstAngle = 30;
    public float secondAngle = 150;
    float tempAngle = 30;//用来缓动
    public float width;
    public float height;
    public void Start()
    {
        circleRadius = Mathf.Sqrt(Mathf.Pow(handleButton.GetComponent().localPosition.x, 2) + Mathf.Pow(handleButton.GetComponent().localPosition.y, 2));
        ignoreInTouchRadiusHandleOffset = circleRadius - ignoreInTouchRadiusHandleOffset;
        handleButtonLocation = handleButton.GetComponent().localPosition;
        width = GetComponent().rect.width;
        height = GetComponent().rect.height;
    }
    //重置初始位置
    public void ReSet()
    {
        handleButton.GetComponent().localPosition = handleButtonLocation;
    }
    public void OnPointerEnter( PointerEventData eventData )
	{
		StartCoroutine( "TrackPointer" );
	}
	//如果需要移动到外部时仍然有效可以去掉这里的
	public void OnPointerExit( PointerEventData eventData )
	{
		StopCoroutine( "TrackPointer" ); //停止
	}
	public void OnPointerDown(PointerEventData eventData)
	{
		isPointerDown= true;
	}
	public void OnPointerUp(PointerEventData eventData)
	{
		isPointerDown= false;
	}
	IEnumerator TrackPointer()
	{
		var ray = GetComponentInParent();
		var input = FindObjectOfType();


		var text = GetComponentInChildren();
		
		if( ray != null && input != null )
		{
			while( Application.isPlaying )
			{
                //这个是左侧的
                if (isPointerDown)
                {
                    Vector2 localPos;
                    //获取鼠标当前位置out里赋值
                    RectTransformUtility.ScreenPointToLocalPointInRectangle(transform as RectTransform, Input.mousePosition, ray.eventCamera, out localPos);
                    showColor.text = "SelectColor:" + GetHeatMapColor((int)(localPos.x+ width/2), (int)(localPos.y+height/2));
                    localPos.x = -localPos.x;
                    //半径
                    float mouseRadius = Mathf.Sqrt(localPos.x * localPos.x + localPos.y * localPos.y);
                    //阻止圆内部点击的响应,只允许在一个圆环上进行响应
                    if (mouseRadius > ignoreInTouchRadiusHandleOffset)
                    {
                        //0-180  -180-0偏移后的角度 从第一象限校正到0-360
                        float angle = (Mathf.Atan2(localPos.y, localPos.x)) * Mathf.Rad2Deg;
                        if ((angle < 0 && tempAngle > 0))
                        {
                            tempAngle = 360 + angle;
                        }
                        if((angle > 0 && tempAngle > 330))
                        {
                            tempAngle = angle;
                        }
                        if (angle < 0) angle = 360 + angle;;


                        if (angle < firstAngle) angle = firstAngle;
                        if (angle > secondAngle) angle = secondAngle;


                        angle = (tempAngle + angle) / 2f;
                        tempAngle = angle;
                        //改变小圆的位置
                        handleButton.GetComponent().localPosition = new Vector3(Mathf.Cos(-angle / Mathf.Rad2Deg + 45.0f * Mathf.PI) * circleRadius, Mathf.Sin(-angle / Mathf.Rad2Deg + 45.0f * Mathf.PI) * circleRadius, 0);
                    }
                }
				yield return 0;
			}        
		}   
	}
    public Color32 GetHeatMapColor(int x, int y)
    {
        outputColor = heatMapImage.GetPixel(x, y);
        return outColor;
    }
}
Demo下载地址:https://download.csdn.net/download/dengshunhao/10490227

你可能感兴趣的:(unity)