【功能实现】手机游戏虚拟摇杆功能实现

2024-03-25 05:08

本文主要是介绍【功能实现】手机游戏虚拟摇杆功能实现,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

【UNITY3D】

声明:

查API和根据自己的想法实现此功能。如果你喜欢我这个实现,希望你能有所收获,如果你能改进那就更棒了,但如果你想直接拿走,希望标明出处。

 

只需要把脚本交给画布下的空物体,自行自定义以下内容,运行即可生成虚拟摇杆。

提供了检测区域大小的自定义。

提供了摇杆检测区域的图片自定义。

提供了摇杆底盘以及摇杆的图片自定义。

提供了摇杆灵敏度的自定义。-----值越大 ----灵敏度越小

提供了摇杆移动百分比,以及移动方向信息,可直接用于接入移动模块。

生成的是仿照Moba类的虚拟摇杆,具体分析看对应的设计分析_【测试分析】手机游戏虚拟摇杆设计分析-By Terrell21

代码中某些数字部分没提供自定义,可根据个人需要修改或设置成自定义。

枚举为  虚拟摇杆的组成部分,摇杆盘底,摇杆。

 

主要功能:

不做出检测区域外的响应。

盘底位置根据在检测区域内的响应进行位置更新。松手后返回初始位置。

盘底不回超出检测区域,不会超出屏幕边缘。

 

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;enum E_JoystickComponent
{chassis,joystick
}public class VirtualJoyStick : MonoBehaviour {//图片组件private Image click_limit;              //点击区域限制,,跟其RectTransform上的长宽 位置有关private GameObject chassis;          //操纵杆底盘private GameObject joystick;         //操纵杆public Sprite chassis_sprite;public Sprite joystick_sprite;public Sprite limit_sprite;//记录信息private  Vector2 prePos;                 //上一个点击位置private Touch nowTouch;                 //当前触摸信息private  Vector2 iniPos;                 //初始位置public float sensitivity = 2;          //灵敏度  ---这里越大 灵敏度越小private float m_radius;                 //盘子半径public float moveInfo;                  //摇杆移动的百分比public Vector2 moveDir;                 //摇杆移动的方向public float trigger_width;public float trigger_height;// Use this for initializationvoid Start () {//图形部分click_limit = gameObject.AddComponent(typeof(Image)) as Image;click_limit.sprite = limit_sprite;click_limit.color = new Color(0, 0, 0, 0.1f);RectTransform triggerRect = GetComponent<RectTransform>();triggerRect.anchorMax = Vector2.zero;triggerRect.anchorMin = Vector2.zero;triggerRect.pivot = Vector2.one;triggerRect.anchoredPosition = new Vector2(trigger_width, trigger_height);triggerRect.sizeDelta = new Vector2(trigger_width, trigger_height);chassis = CreateChild("Chassis",this.transform,E_JoystickComponent.chassis);joystick = CreateChild("Joystick", chassis.transform,E_JoystickComponent.joystick);}//1)触发区域//2)触发情况//3)放置摇杆//4)摇杆拖动//5)限制摇杆摆放位置//6)边缘位置 直接拖动public void Update(){if (Input.touches.Length > 0){Touch touch = Input.GetTouch(0);//检测上一次的触发是否结束//结束->检验此次按压的位置是否处于检测区域->放置摇杆//非结束->拖动给杆心if (nowTouch.phase == TouchPhase.Ended){Vector2 edge = transform.GetComponent<RectTransform>().anchoredPosition;if (touch.position.x < edge.x && touch.position.y < edge.y){nowTouch = touch;chassis.transform.position = touch.position;prePos = touch.position;CheckIsEdge();}}else{joystick.GetComponent<RectTransform>().anchoredPosition = (touch.position - prePos) / sensitivity;if(joystick.GetComponent<RectTransform>().anchoredPosition.magnitude > m_radius){joystick.GetComponent<RectTransform>().anchoredPosition = joystick.GetComponent<RectTransform>().anchoredPosition.normalized * m_radius;}}//检测抬手//摇杆杆心返回//摇杆返回初始点//将上一状态的触摸信息设置成触摸离开if (touch.phase == TouchPhase.Ended){nowTouch.phase = TouchPhase.Ended;chassis.GetComponent<RectTransform>().anchoredPosition = Vector2.zero;joystick.GetComponent<RectTransform>().anchoredPosition = iniPos;}//刷新当前按压位置的信息//s = touch.position.ToString();}if ((joystick.GetComponent<RectTransform>().anchoredPosition.normalized * m_radius).magnitude > 0)moveInfo = joystick.GetComponent<RectTransform>().anchoredPosition.magnitude / (joystick.GetComponent<RectTransform>().anchoredPosition.normalized * m_radius).magnitude;elsemoveInfo = 0;moveDir = joystick.GetComponent<RectTransform>().anchoredPosition.normalized;}//判断是否触碰触发区边缘,并作相应调整private void CheckIsEdge(){float y = Mathf.Abs(transform.position.y - chassis.transform.position.y);float x = Mathf.Abs(transform.position.x - chassis.transform.position.x);//判断摇杆盘底是否触碰触发区上下边缘if (y > transform.position.x - m_radius){chassis.transform.position = new Vector3(chassis.transform.position.x, m_radius, chassis.transform.position.z);}else if (y < m_radius){chassis.transform.position = new Vector3(chassis.transform.position.x, chassis.transform.position.y - m_radius, chassis.transform.position.z);}//判断摇杆底盘是否触碰触发区域左右边缘if (x > transform.position.x - m_radius){chassis.transform.position = new Vector3(m_radius, chassis.transform.position.y, chassis.transform.position.z);}else if (x < m_radius){chassis.transform.position = new Vector3(chassis.transform.position.x - m_radius, chassis.transform.position.y, chassis.transform.position.z);}}/// <summary>/// 生成对象并建立关系/// </summary>/// <param name="name"></param>/// <param name="parent"></param>/// <returns></returns>GameObject CreateChild(string name,Transform parent,E_JoystickComponent joystickComponent){GameObject gameObject = new GameObject(name);gameObject.transform.SetParent(parent);Image image;RectTransform rectTransform;Vector2 triggerRect = this.GetComponent<RectTransform>().sizeDelta;switch (joystickComponent){case E_JoystickComponent.chassis:image = gameObject.AddComponent(typeof(Image)) as Image;image.sprite = chassis_sprite;image.color = Color.black;rectTransform = image.gameObject.GetComponent<RectTransform>();rectTransform.anchoredPosition = Vector2.zero;rectTransform.sizeDelta = new Vector2(triggerRect.x * 2 / 7, triggerRect.y * 2 / 7);m_radius = triggerRect.x * 2 / 7 / 2;prePos = rectTransform.position;break;case E_JoystickComponent.joystick:image = gameObject.AddComponent(typeof(Image)) as Image;image.sprite = joystick_sprite;image.color = Color.red;rectTransform = image.gameObject.GetComponent<RectTransform>();rectTransform.anchoredPosition = Vector2.zero;rectTransform.sizeDelta = new Vector2(triggerRect.x  / 7, triggerRect.y / 7);iniPos = rectTransform.anchoredPosition;break;}return gameObject;}}


演示:

魅蓝 note5  Unity Remote 5 的录屏情况

这篇关于【功能实现】手机游戏虚拟摇杆功能实现的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/843907

相关文章

windos server2022里的DFS配置的实现

《windosserver2022里的DFS配置的实现》DFS是WindowsServer操作系统提供的一种功能,用于在多台服务器上集中管理共享文件夹和文件的分布式存储解决方案,本文就来介绍一下wi... 目录什么是DFS?优势:应用场景:DFS配置步骤什么是DFS?DFS指的是分布式文件系统(Distr

NFS实现多服务器文件的共享的方法步骤

《NFS实现多服务器文件的共享的方法步骤》NFS允许网络中的计算机之间共享资源,客户端可以透明地读写远端NFS服务器上的文件,本文就来介绍一下NFS实现多服务器文件的共享的方法步骤,感兴趣的可以了解一... 目录一、简介二、部署1、准备1、服务端和客户端:安装nfs-utils2、服务端:创建共享目录3、服

C#使用yield关键字实现提升迭代性能与效率

《C#使用yield关键字实现提升迭代性能与效率》yield关键字在C#中简化了数据迭代的方式,实现了按需生成数据,自动维护迭代状态,本文主要来聊聊如何使用yield关键字实现提升迭代性能与效率,感兴... 目录前言传统迭代和yield迭代方式对比yield延迟加载按需获取数据yield break显式示迭

Python实现高效地读写大型文件

《Python实现高效地读写大型文件》Python如何读写的是大型文件,有没有什么方法来提高效率呢,这篇文章就来和大家聊聊如何在Python中高效地读写大型文件,需要的可以了解下... 目录一、逐行读取大型文件二、分块读取大型文件三、使用 mmap 模块进行内存映射文件操作(适用于大文件)四、使用 pand

python实现pdf转word和excel的示例代码

《python实现pdf转word和excel的示例代码》本文主要介绍了python实现pdf转word和excel的示例代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价... 目录一、引言二、python编程1,PDF转Word2,PDF转Excel三、前端页面效果展示总结一

Python xmltodict实现简化XML数据处理

《Pythonxmltodict实现简化XML数据处理》Python社区为提供了xmltodict库,它专为简化XML与Python数据结构的转换而设计,本文主要来为大家介绍一下如何使用xmltod... 目录一、引言二、XMLtodict介绍设计理念适用场景三、功能参数与属性1、parse函数2、unpa

C#实现获得某个枚举的所有名称

《C#实现获得某个枚举的所有名称》这篇文章主要为大家详细介绍了C#如何实现获得某个枚举的所有名称,文中的示例代码讲解详细,具有一定的借鉴价值,有需要的小伙伴可以参考一下... C#中获得某个枚举的所有名称using System;using System.Collections.Generic;usi

Go语言实现将中文转化为拼音功能

《Go语言实现将中文转化为拼音功能》这篇文章主要为大家详细介绍了Go语言中如何实现将中文转化为拼音功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 有这么一个需求:新用户入职 创建一系列账号比较麻烦,打算通过接口传入姓名进行初始化。想把姓名转化成拼音。因为有些账号即需要中文也需要英

C# 读写ini文件操作实现

《C#读写ini文件操作实现》本文主要介绍了C#读写ini文件操作实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧... 目录一、INI文件结构二、读取INI文件中的数据在C#应用程序中,常将INI文件作为配置文件,用于存储应用程序的

C#实现获取电脑中的端口号和硬件信息

《C#实现获取电脑中的端口号和硬件信息》这篇文章主要为大家详细介绍了C#实现获取电脑中的端口号和硬件信息的相关方法,文中的示例代码讲解详细,有需要的小伙伴可以参考一下... 我们经常在使用一个串口软件的时候,发现软件中的端口号并不是普通的COM1,而是带有硬件信息的。那么如果我们使用C#编写软件时候,如