Unity实现简单的虚拟摇杆

所属分类: 软件编程 / C#教程 阅读数: 61
收藏 0 赞 0 分享

本文实例为大家分享了Unity实现简单虚拟摇杆的具体代码,供大家参考,具体内容如下

需求:点击创建一个虚拟摇杆底盘,鼠标拖拽时候上方摇杆会跟随鼠标方向移动,并且不会超出摇杆盘范围
*摇杆功能另外实现

UI显示

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

public class RockingIcon : MonoBehaviour
{
 public Transform touchPoint;
 public Transform bgPoint;
 public float radius;
 bool isPressing;
 Vector3 bgPos;

 private void Update()
 {
  bool pressing;
  Vector3 pos;
  if (Application.isEditor)
   GetPressingInfoInEditor(out pressing, out pos);
  else
   GetPressingInfoInPhone(out pressing, out pos);
  SetIcon(pressing, pos);

 }

 void GetPressingInfoInEditor(out bool pressing, out Vector3 pos)
 {
  if (Input.GetMouseButton(0))
  {
   pressing = true;
   pos = Input.mousePosition;
  }
  else
  {
   pressing = false;
   pos = Vector3.zero;
  }
 }

 void GetPressingInfoInPhone(out bool pressing, out Vector3 pos)
 {
  if(Input.touchCount > 0)
  {
   pressing = true;
   pos = Input.GetTouch(0).position;
  }
  else
  {
   pressing = false;
   pos = Vector3.zero;
  }
 }


 void SetIcon(bool pressing, Vector3 pos)
 {
  if (pressing)
  {
   if (!isPressing)
   {
    bgPoint.gameObject.SetActive(true);
    bgPoint.transform.position = pos;
    bgPos = pos;
    isPressing = true;
   }
   else
   {
    bgPoint.gameObject.SetActive(true);
    SetTouchPointPos(pos);
   }
  }
  else
  {
   touchPoint.gameObject.SetActive(false);
   bgPoint.gameObject.SetActive(false);
   isPressing = false;
  }
 }

 void SetTouchPointPos(Vector3 pos)
 {
  Vector3 center = bgPoint.position;
  Vector3 touch = pos;
  Vector3 to;
  float distance = Vector3.Distance(center, touch);
  if (distance < radius)
   to = touch;
  else
  {
   Vector3 dir = touch - center;
   dir.Normalize();
   to = dir * radius;
   to += center;
  }
  touchPoint.gameObject.SetActive(true);
  touchPoint.transform.position = to;
 }
}

预制:

操作控制

#region 鼠标操作

float min_move_x = Global.min_move_distance * (Screen.width / 1080f);
float min_move_y = Global.min_move_distance * (Screen.height / 1900f);

if(Application.platform == RuntimePlatform.WindowsEditor)
  {
   if (Input.GetMouseButtonDown(0))
   {
    touch_time = 0;
    first_touch_pos = Input.mousePosition;
   }
   else if (Input.GetMouseButton(0))
   {

    touch_time += Time.deltaTime;
    if (touch_time >= Global.touch_time_limit)
    {
     Vector2 touch_pos = Input.mousePosition;
     Vector2 distance = touch_pos - first_touch_pos;

     //Vector2 touch_pos_in_func = PosInTheFunc(touch_pos);
     //Vector2 first_pos_in_func = PosInTheFunc(first_touch_pos);
     //Vector2 distance = touch_pos_in_func - first_pos_in_func;

     if (Mathf.Abs(distance.x) > min_move_x && Mathf.Abs(distance.x) > Mathf.Abs(distance.y)) Move(distance.x > 0 ? Vector3.right : Vector3.left);
     if (Mathf.Abs(distance.y) > min_move_y && Mathf.Abs(distance.y) > Mathf.Abs(distance.x)) Move(distance.y > 0 ? Vector3.forward : Vector3.back);
    }
   }
   else if (Input.GetMouseButtonUp(0))
   {

    //if(touch_time < Global.touch_time_limit)
    //{
    // PutBoomb();
    //}
    touch_time = 0;
    first_touch_pos = Vector3.zero;
   }
  }
  #endregion
  #region 手机操作

  if (Application.platform == RuntimePlatform.Android)
  {
   if (Input.touchCount > 0)
   {

    Touch touch = Input.GetTouch(0);
    if (touch.phase == TouchPhase.Began)
    {
     first_touch_pos = touch.position;
     

    }
    else if (touch.phase == TouchPhase.Ended)
    {
     first_touch_pos = Vector3.zero;
    }
    else if (touch.phase == TouchPhase.Moved || touch.phase == TouchPhase.Stationary)
    {
     Vector2 touch_pos = touch.position;
     Vector2 distance = touch_pos - first_touch_pos;
     if (Mathf.Abs(distance.x) > min_move_x && Mathf.Abs(distance.x) > Mathf.Abs(distance.y)) Move(distance.x > 0 ? Vector3.right : Vector3.left);
     if (Mathf.Abs(distance.y) > min_move_y && Mathf.Abs(distance.y) > Mathf.Abs(distance.x)) Move(distance.y > 0 ? Vector3.forward : Vector3.back);

    }
   }
  }

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

更多精彩内容其他人还在看

C#中Datetimepicker出现问题的解决方法

这篇文章主要给大家介绍了关于C#中Datetimepicker出现问题的解决方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

C# SQLite数据库入门使用说明

这篇文章主要给大家介绍了关于C#中SQLite数据库入门使用的相关资料,文中通过图文以及示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

C#实现批量下载图片到本地示例代码

这篇文章主要给大家介绍了关于C#如何实现批量下载图片到本地的相关资料,文中通过示例代码介绍的非常详细,对大家学习或者使用c#具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

如何获取C#中方法的执行时间以及其代码注入详解

这篇文章主要给大家介绍了关于如何获取C#中方法的执行时间以及其代码注入的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面来一起看看吧
收藏 0 赞 0 分享

C#中通过LRU实现通用高效的超时连接探测

这篇文章主要介绍了c#中通过LRU实现通用高效的超时连接探测,非常不错,具有一定的参考借鉴价值 ,需要的朋友可以参考下
收藏 0 赞 0 分享

如何使用C#将Tensorflow训练的.pb文件用在生产环境详解

这篇文章主要给大家介绍了关于如何使用C#将Tensorflow训练的.pb文件用在生产环境的相关资料,文中通过示例代码介绍的非常详细,需要的朋友可以参考借鉴,下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

C#程序启动项的设置方法

这篇文章主要为大家详细介绍了C#程序启动项的设置方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

c#爬虫爬取京东的商品信息

这篇文章主要给大家介绍了关于利用c#爬虫爬取京东商品信息的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们随着小编来一起学习学习吧
收藏 0 赞 0 分享

C#随机数生成字母金字塔

这篇文章主要为大家详细介绍了C#随机数生成字母金字塔,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

WPF实现窗体中的悬浮按钮

这篇文章主要为大家详细介绍了WPF实现窗体中的悬浮按钮,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享
查看更多