unity中摇杆的使用
创始人
2024-11-16 03:35:31
0

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.EventSystems;

namespace JoystickPlugin
{
    public class Joystick : MonoBehaviour, IPointerUpHandler, IDragHandler, IPointerDownHandler
    {
        public float Horizontal { get { return (snapX) ? SnapFloat(input.x, AxisOptions.Horizontal) : input.x; } }
        public float Vertical { get { return (snapY) ? SnapFloat(input.y, AxisOptions.Vertical) : input.y; } }
        public Vector2 Direction { get { return new Vector2(Horizontal, Vertical); } }

        public float HandleRange
        {
            get { return handleRange; }
            set { handleRange = Mathf.Abs(value); }
        }

        public float DeadZone
        {
            get { return deadZone; }
            set { deadZone = Mathf.Abs(value); }
        }

        public AxisOptions AxisOptions { get { return AxisOptions; } set { axisOptions = value; } }
        public bool SnapX { get { return snapX; } set { snapX = value; } }
        public bool SnapY { get { return snapY; } set { snapY = value; } }

        [SerializeField] private float handleRange = 1;
        [SerializeField] private float deadZone = 0;
        [SerializeField] private AxisOptions axisOptions = AxisOptions.Both;
        [SerializeField] private bool snapX = false;
        [SerializeField] private bool snapY = false;

        [SerializeField] public RectTransform background = null;
        [SerializeField] public RectTransform handle = null;
        private RectTransform baseRect = null;

        private Canvas canvas;
        private Camera cam;

        private Vector2 input = Vector2.zero;

        private void Awake()
        {

            HandleRange = 0.5f;
            DeadZone = 0;
            AxisOptions = AxisOptions.Both;
            SnapX = false;
            SnapY = false;
            background = transform.Find("Background").GetComponent();
            handle = transform.Find("Background/Handle").GetComponent();
            baseRect = GetComponent();
            canvas = transform.parent.GetComponent();
            //            background = transform.GetComponent();
            Debug.Log("canvas:::" + canvas);
            Debug.Log("transform:::" + transform);
//            handle = transform.Find("Handle").GetComponent();
        }

        protected virtual void Start()
        {
            HandleRange = handleRange;
            DeadZone = deadZone;
            baseRect = GetComponent();
            canvas = GetComponentInParent();
            if (canvas == null)
                Debug.LogError("The Joystick is not placed inside a canvas");
            Vector2 center = new Vector2(0.5f, 0.5f);
            background.pivot = center;
            handle.anchorMin = center;
            handle.anchorMax = center;
            handle.pivot = center;
            handle.anchoredPosition = Vector2.zero;
            input = Vector2.zero;
        }

        public virtual void OnPointerDown(PointerEventData eventData)
        {
            OnDrag(eventData);
        }

        public void OnDrag(PointerEventData eventData)
        {
            cam = null;
            if (canvas.renderMode == RenderMode.ScreenSpaceCamera)
                cam = canvas.worldCamera;

            Vector2 position = RectTransformUtility.WorldToScreenPoint(cam, background.position);
            Vector2 radius = background.sizeDelta / 2;
            input = (eventData.position - position) / (radius * canvas.scaleFactor);
            FormatInput();
            HandleInput(input.magnitude, input.normalized, radius, cam);
            handle.anchoredPosition = input * radius * handleRange;
        }

        protected virtual void HandleInput(float magnitude, Vector2 normalised, Vector2 radius, Camera cam)
        {
            if (magnitude > deadZone)
            {
                if (magnitude > 1)
                    input = normalised;
            }
            else
                input = Vector2.zero;
        }

        private void FormatInput()
        {
            if (axisOptions == AxisOptions.Horizontal)
                input = new Vector2(input.x, 0f);
            else if (axisOptions == AxisOptions.Vertical)
                input = new Vector2(0f, input.y);
        }

        private float SnapFloat(float value, AxisOptions snapAxis)
        {
            if (value == 0)
                return value;

            if (axisOptions == AxisOptions.Both)
            {
                float angle = Vector2.Angle(input, Vector2.up);
                if (snapAxis == AxisOptions.Horizontal)
                {
                    if (angle < 22.5f || angle > 157.5f)
                        return 0;
                    else
                        return (value > 0) ? 1 : -1;
                }
                else if (snapAxis == AxisOptions.Vertical)
                {
                    if (angle > 67.5f && angle < 112.5f)
                        return 0;
                    else
                        return (value > 0) ? 1 : -1;
                }
                return value;
            }
            else
            {
                if (value > 0)
                    return 1;
                if (value < 0)
                    return -1;
            }
            return 0;
        }

        public virtual void OnPointerUp(PointerEventData eventData)
        {
            input = Vector2.zero;
            handle.anchoredPosition = Vector2.zero;
        }

        protected Vector2 ScreenPointToAnchoredPosition(Vector2 screenPosition)
        {
            Vector2 localPoint = Vector2.zero;
            if (RectTransformUtility.ScreenPointToLocalPointInRectangle(baseRect, screenPosition, cam, out localPoint))
            {
                Vector2 pivotOffset = baseRect.pivot * baseRect.sizeDelta;
                return localPoint - (background.anchorMax * baseRect.sizeDelta) + pivotOffset;
            }
            return Vector2.zero;
        }
    }

    public enum AxisOptions { Both, Horizontal, Vertical }

}
 

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using JoystickPlugin;
public class testTANK : MonoBehaviour
{
    FixedJoystick fx;
    public Transform t;
    // Start is called before the first frame update
    void Start()
    {
        //滑轮
       fx = transform.Find("touch_bg").gameObject.AddComponent();

        fx.HandleRange = 0.5f;
        fx.enabled = true;
    }

    // Update is called once per frame
    void Update()
    {
        //Quaternion rotation = Quaternion.LookRotation(fx.Direction);

        // 应用旋转到GameObject  
        //t.localEulerAngles =new Vector3(0,0, Vector2ToAngle(fx.Direction));

        t.rotation = Quaternion.Euler(new Vector3(0, 0, Vector2ToAngle(fx.Direction)));
        //t.rotation = Quaternion.Euler();
        t.transform.Translate(fx.Direction * Time.fixedDeltaTime*50 , Space.World);
    }
    float Vector2ToAngle(Vector2 vector)
    {
        // 使用Atan2计算角度,并将弧度转换为度数
        float angle = Mathf.Atan2(vector.y, vector.x) * Mathf.Rad2Deg-90f;

        // 保证角度为正数
        if (angle < 0) angle += 360;

        return angle;
    }
}
 

相关内容

热门资讯

分享个大家(德扑之星)辅助器是... 分享个大家(德扑之星)辅助器是真的假的(软件透明挂)透视(有挂教程)具体教程(哔哩哔哩);亲,关键说...
我来教大家(wepoke)透视... 我来教大家(wepoke)透视辅助可测试(透明挂)透明挂(有挂策略)详细教程(哔哩哔哩);wepok...
我来向大家传授(微扑克)德州插... 我来向大家传授(微扑克)德州插件(辅助)透视(有挂点拨)入微教程(哔哩哔哩);微扑克软件透明挂作为一...
新2024私人局(AAPoKe... 新2024私人局(AAPoKer)到底有辅助(透明挂)透视(有挂策略)详实教程(哔哩哔哩);AAPo...
第三方操作(德州扑之星)真的有... 德州扑之星的纷争折扣端一折最新版本,可以免费领取大额福利哦。玩家们需要用自己的大脑击败强大的敌人。在...
推荐十款(aa扑克)的辅助工具... 推荐十款(aa扑克)的辅助工具(透明挂软件)透视(有挂策略)详备教程(哔哩哔哩);aa扑克原来是有辅...
9分钟了解(AA PoKer)... 9分钟了解(AA PoKer)透视辅助可测试真的假的(透明挂)辅助挂(有挂启发)全面教程(哔哩哔哩)...
重大科普(aa poker)软... 重大科普(aa poker)软件发牌原理(透明挂软件)辅助挂(有挂引导)精确教程(哔哩哔哩)这是由厦...
最新研发(WePoKe)辅助工... 最新研发(WePoKe)辅助工具(辅助)辅助挂(有挂启发)细致教程(哔哩哔哩);WePoKe是一款益...
每日必看教程(WEPOKE)辅... 每日必看教程(WEPOKE)辅助透视(软件透明挂)辅助挂(有挂点拨)具体教程(哔哩哔哩),亲,有的,...