手机3D游戏开发:自定义Joystick的相关设置和脚本源码
Joystick在手游开发中非常常见,也就是在手机屏幕上的虚拟操纵杆,但是Unity3D自带的Joystick贴图比较原始,所以经常有使用自定义贴图的需求。
下面就来演示一下如何实现自定义JoyStick贴图。
首先导入贴图,注意要把默认的Texture改为GUI要不然尺寸会发生改变:
在Inspector面板中点击Texture选项可以实现简单的贴图切换:
选中后便会发现场景中的Joystick已经发生了改变:
同理,可以对右边的Joystick做同样的修改:
当然很多时候这样简单的修改很难满足我们的需求。
下面来说说对Joystick的常见调整。
首先是坐标的调整,一般把Postition归零而在GUITexture中调整Pixel Inset:
但是这样依旧会出问题,全屏的时候因为采用了绝对坐标所以会出现这种情况:
所以我们还需要在脚本中稍作调整。
先来给Joystick加个背景图片。
创建一个JS脚本JoystickBackgroundGUI:
- @script RequireComponent(Joystick)
- @script ExecuteInEditMode ()
- var background = new SwitchGUI();
- var location = new Location();
- private var GUIalpha:float = 1;
- private var joystick : Joystick;
- joystick = GetComponent (Joystick);
- var noGuiStyle : GUIStyle;
- function Update() {
- if (joystick.IsFingerDown()) {
- background.up();
- } else {
- background.down();
- }
- if (background.texture != null){
- location.updateLocation();
- }
- }
- function OnGUI () {
- GUI.color.a = GUIalpha;
- GUI.Box(Rect(location.offset.x + background.offset.x - background.texture.width/2,location.offset.y + background.offset.y - background.texture.height/2,background.texture.width,background.texture.height),background.texture,noGuiStyle);
- }
joystick是Unity自己封装好的对象,其中有IsFingerDown等函数有需要的同学可以查阅一下Unity官网的说明文档。
脚本中用到了Location和SwitchGUI,这两个函数在另一个脚本 _GUIClasses 中定义:
- import System.Collections.Generic;
- // TextureGUI Class: create a basic class for creating and placing GUI elements
- // texture = the texture to display
- // offset = pixel offset from top left corner, can be modified for easy positioning
- class TextureGUI {
- var texture:Texture; //useful: texture.width, texture.height
- var offset:Vector2; // .x and .y
- private var originalOffset:Vector2; //store the original to correctly reset anchor point
- enum Point { TopLeft, TopRight, BottomLeft, BottomRight, Center} //what part of texture to position around?
- var anchorPoint = Point.TopLeft; // Unity default is from top left corner of texture
- function setAnchor() { // meant to be run ONCE at Start.
- originalOffset = offset;
- if (texture) { // check for null texture
- switch(anchorPoint) { //depending on where we want to center our offsets
- case anchorPoint.TopLeft: // Unity default, do nothing
- break;
- case anchorPoint.TopRight: // Take the offset and go to the top right corner
- offset.x = originalOffset.x - texture.width;
- break;
- case anchorPoint.BottomLeft: // bottom left corner of texture
- offset.y = originalOffset.y - texture.height;
- break;
- case anchorPoint.BottomRight: //bottom right corner of texture
- offset.x = originalOffset.x - texture.width;
- offset.y = originalOffset.y - texture.height;
- break;
- case anchorPoint.Center: //and the center of the texture (useful for screen center textures)
- offset.x = originalOffset.x - texture.width/2;
- offset.y = originalOffset.y - texture.height/2;
- break;
- }
- }
- }
- }
- //Timer Class:
- class TimerGUI extends TextureGUI { // Extend functionality from TextureGUI for a depreciating timer graphic
- var textureLEnd:Texture; // left side of full texture (non stretching part)
- var offsetLEnd:Vector2; // left side of full texture (non stretching part) start position
- var textureCenter:Texture; // center of timer (will be stretched across width)
- var offsetCenter:Vector2;
- var textureREnd:Texture;
- var offsetREnd:Vector2;
- var timerPerct:float = 1; // percentage (0 to 1) this stretches the center
- var desiredWidth:float = 403; // max width of the timer in pixels
- function setTime(newTime:float) {
- timerPerct = newTime; // sets the percent based on value
- }
- }
- // SwitchGUI Class: Extends the TextureGUI to be able to load in multiple textures and switch between them
- class SwitchGUI extends TextureGUI {
- var switchableTextures = new List.<Texture>();
- var currentTexture:int = 0;
- function Start() {
- if (switchableTextures.Count > 0) {
- texture = switchableTextures[currentTexture];
- }
- }
- function changeTexture(switchTo:int) {
- if (switchTo < switchableTextures.Count && switchTo >= 0) {
- texture = switchableTextures[switchTo];
- currentTexture = switchTo;
- } else {
- //Debug.Log( this + ": tried to call invalid part of switchTextures array!");
- }
- }
- function up() {
- if ((currentTexture+1) < switchableTextures.Count) {
- ++currentTexture;
- texture = switchableTextures[currentTexture];
- } else {
- //Debug.Log( this + ": at the top!");
- }
- }
- function nextTexture() {
- if ((currentTexture+1) < switchableTextures.Count) { // if we are at the end of the array
- ++currentTexture;
- texture = switchableTextures[currentTexture];
- } else {// loop to the beginning
- currentTexture = 0;
- texture = switchableTextures[currentTexture];
- }
- }
- function down() {
- if ((currentTexture-1) >= 0) {
- --currentTexture;
- texture = switchableTextures[currentTexture];
- } else {
- //Debug.Log( this + ": at the bottom!");
- }
- }
- }
- // Location class:
- class Location {
- enum Point { TopLeft, TopRight, BottomLeft, BottomRight, Center}
- var pointLocation = Point.TopLeft;
- var offset:Vector2;
- function updateLocation() {
- switch(pointLocation) {
- case pointLocation.TopLeft:
- offset = Vector2(0,0);
- break;
- case pointLocation.TopRight:
- offset = Vector2(Screen.width,0);
- break;
- case pointLocation.BottomLeft:
- offset = Vector2(0,Screen.height);
- break;
- case pointLocation.BottomRight:
- offset = Vector2(Screen.width,Screen.height);
- break;
- case pointLocation.Center:
- offset = Vector2(Screen.width/2,Screen.height/2);
- break;
- }
- }
- }
- class TextureAnchor {
- enum Point { TopLeft, TopRight, BottomLeft, BottomRight, Center}
- var anchorPoint = Point.TopLeft;
- var offset:Vector2;
- function update() {
- switch(anchorPoint) {
- case anchorPoint.TopLeft:
- offset = Vector2(0,0);
- break;
- case anchorPoint.TopRight:
- offset = Vector2(Screen.width,0);
- break;
- case anchorPoint.BottomLeft:
- offset = Vector2(0,Screen.height);
- break;
- case anchorPoint.BottomRight:
- offset = Vector2(Screen.width,Screen.height);
- break;
- case anchorPoint.Center:
- offset = Vector2(Screen.width/2,Screen.height/2);
- break;
- }
- }
- }
将脚本拖拽到Joystick上面并且部署好贴图,运行可见Joystick的背景贴图,当然坐标还有点问题:
我们在脚本中将其设置为BottomLeft,并且设置好SwitchTexture:
配置好了之后点击运行,会发现Joystick 的贴图出现在了左下角:
通过脚本中的Pixel设置可以调整两个纹理贴图的坐标并使他们趋于一致:
调整之后的结果如图:
同时将Joystick的脚本换成下面的脚本,可以实现隐藏操纵杆而只在碰到摇杆区域才显示Joystick的效果:
- //////////////////////////////////////////////////////////////
- // Joystick.js
- // Penelope iPhone Tutorial
- //
- // Joystick creates a movable joystick (via GUITexture) that
- // handles touch input, taps, and phases. Dead zones can control
- // where the joystick input gets picked up and can be normalized.
- //
- // Optionally, you can enable the touchPad property from the editor
- // to treat this Joystick as a TouchPad. A TouchPad allows the finger
- // to touch down at any point and it tracks the movement relatively
- // without moving the graphic
- //////////////////////////////////////////////////////////////
- #pragma strict
- @script RequireComponent( GUITexture )
- // A simple class for bounding how far the GUITexture will move
- class Boundary
- {
- var min : Vector2 = Vector2.zero;
- var max : Vector2 = Vector2.zero;
- }
- static private var joysticks : Joystick[]; // A static collection of all joysticks
- static private var enumeratedJoysticks : boolean = false;
- static private var tapTimeDelta : float = 0.3; // Time allowed between taps
- var touchPad : boolean; // Is this a TouchPad?
- var touchZone : Rect;
- var deadZone : Vector2 = Vector2.zero; // Control when position is output
- var normalize : boolean = false; // Normalize output after the dead-zone?
- var position : Vector2; // [-1, 1] in x,y
- var tapCount : int; // Current tap count
- private var lastFingerId = -1; // Finger last used for this joystick
- private var tapTimeWindow : float; // How much time there is left for a tap to occur
- private var fingerDownPos : Vector2;
- private var fingerDownTime : float;
- private var firstDeltaTime : float = 0.5;
- private var gui : GUITexture; // Joystick graphic
- private var defaultRect : Rect; // Default position / extents of the joystick graphic
- private var guiBoundary : Boundary = Boundary(); // Boundary for joystick graphic
- private var guiTouchOffset : Vector2; // Offset to apply to touch input
- private var guiCenter : Vector2; // Center of joystick
- private var alphaOff:float = 0.0;
- function Start()
- {
- // Cache this component at startup instead of looking up every frame
- gui = GetComponent( GUITexture );
- // Store the default rect for the gui, so we can snap back to it
- defaultRect = gui.pixelInset;
- gui.color.a = alphaOff;
- defaultRect.x += transform.position.x * Screen.width; // + gui.pixelInset.x; // - Screen.width * 0.5;
- defaultRect.y += transform.position.y * Screen.height; //+ gui.pixelInset.y; // - Screen.height * 0.5;
- transform.position.x = 0.0;
- transform.position.y = 0.0;
- if ( touchPad )
- {
- // If a texture has been assigned, then use the rect ferom the gui as our touchZone
- if ( gui.texture )
- touchZone = defaultRect;
- }
- else
- {
- // This is an offset for touch input to match with the top left
- // corner of the GUI
- guiTouchOffset.x = defaultRect.width * 0.5;
- guiTouchOffset.y = defaultRect.height * 0.5;
- // Cache the center of the GUI, since it doesn't change
- guiCenter.x = defaultRect.x + guiTouchOffset.x;
- guiCenter.y = defaultRect.y + guiTouchOffset.y;
- // Let's build the GUI boundary, so we can clamp joystick movement
- guiBoundary.min.x = defaultRect.x - guiTouchOffset.x;
- guiBoundary.max.x = defaultRect.x + guiTouchOffset.x;
- guiBoundary.min.y = defaultRect.y - guiTouchOffset.y;
- guiBoundary.max.y = defaultRect.y + guiTouchOffset.y;
- }
- }
- function Disable()
- {
- gameObject.active = false;
- enumeratedJoysticks = false;
- }
- function ResetJoystick()
- {
- // Release the finger control and set the joystick back to the default position
- gui.pixelInset = defaultRect;
- lastFingerId = -1;
- position = Vector2.zero;
- fingerDownPos = Vector2.zero;
- gui.color.a = alphaOff;
- }
- function IsFingerDown() : boolean
- {
- return (lastFingerId != -1);
- }
- function LatchedFinger( fingerId : int )
- {
- // If another joystick has latched this finger, then we must release it
- if ( lastFingerId == fingerId )
- ResetJoystick();
- }
- function Update()
- {
- if ( !enumeratedJoysticks )
- {
- // Collect all joysticks in the game, so we can relay finger latching messages
- joysticks = FindObjectsOfType(Joystick) as Joystick[];
- enumeratedJoysticks = true;
- }
- var count = Input.touchCount;
- // Adjust the tap time window while it still available
- if ( tapTimeWindow > 0 )
- tapTimeWindow -= Time.deltaTime;
- else
- tapCount = 0;
- if ( count == 0 )
- ResetJoystick();
- else
- {
- for(var i : int = 0;i < count; i++)
- {
- var touch : Touch = Input.GetTouch(i);
- var guiTouchPos : Vector2 = touch.position - guiTouchOffset;
- var shouldLatchFinger = false;
- if ( touchPad )
- {
- if ( touchZone.Contains( touch.position ) )
- shouldLatchFinger = true;
- }
- else if ( gui.HitTest( touch.position ) )
- {
- shouldLatchFinger = true;
- gui.color.a = .5;
- }
- // Latch the finger if this is a new touch
- if ( shouldLatchFinger && ( lastFingerId == -1 || lastFingerId != touch.fingerId ) )
- {
- if ( touchPad )
- {
- //gui.color.a = 0.15;
- lastFingerId = touch.fingerId;
- fingerDownPos = touch.position;
- fingerDownTime = Time.time;
- }
- lastFingerId = touch.fingerId;
- // Accumulate taps if it is within the time window
- if ( tapTimeWindow > 0 )
- tapCount++;
- else
- {
- tapCount = 1;
- tapTimeWindow = tapTimeDelta;
- }
- // Tell other joysticks we've latched this finger
- for ( var j : Joystick in joysticks )
- {
- if ( j != this )
- j.LatchedFinger( touch.fingerId );
- }
- }
- if ( lastFingerId == touch.fingerId )
- {
- // Override the tap count with what the iPhone SDK reports if it is greater
- // This is a workaround, since the iPhone SDK does not currently track taps
- // for multiple touches
- if ( touch.tapCount > tapCount )
- tapCount = touch.tapCount;
- if ( touchPad )
- {
- // For a touchpad, let's just set the position directly based on distance from initial touchdown
- position.x = Mathf.Clamp( ( touch.position.x - fingerDownPos.x ) / ( touchZone.width / 2 ), -1, 1 );
- position.y = Mathf.Clamp( ( touch.position.y - fingerDownPos.y ) / ( touchZone.height / 2 ), -1, 1 );
- }
- else
- {
- // Change the location of the joystick graphic to match where the touch is
- gui.pixelInset.x = Mathf.Clamp( guiTouchPos.x, guiBoundary.min.x, guiBoundary.max.x );
- gui.pixelInset.y = Mathf.Clamp( guiTouchPos.y, guiBoundary.min.y, guiBoundary.max.y );
- }
- if ( touch.phase == TouchPhase.Ended || touch.phase == TouchPhase.Canceled ) {
- ResetJoystick();
- }
- }
- }
- }
- if ( !touchPad )
- {
- // Get a value between -1 and 1 based on the joystick graphic location
- position.x = ( gui.pixelInset.x + guiTouchOffset.x - guiCenter.x ) / guiTouchOffset.x;
- position.y = ( gui.pixelInset.y + guiTouchOffset.y - guiCenter.y ) / guiTouchOffset.y;
- }
- // Adjust for dead zone
- var absoluteX = Mathf.Abs( position.x );
- var absoluteY = Mathf.Abs( position.y );
- if ( absoluteX < deadZone.x )
- {
- // Report the joystick as being at the center if it is within the dead zone
- position.x = 0;
- }
- else if ( normalize )
- {
- // Rescale the output after taking the dead zone into account
- position.x = Mathf.Sign( position.x ) * ( absoluteX - deadZone.x ) / ( 1 - deadZone.x );
- }
- if ( absoluteY < deadZone.y )
- {
- // Report the joystick as being at the center if it is within the dead zone
- position.y = 0;
- }
- else if ( normalize )
- {
- // Rescale the output after taking the dead zone into account
- position.y = Mathf.Sign( position.y ) * ( absoluteY - deadZone.y ) / ( 1 - deadZone.y );
- }
- }
运行以下项目可以发现Joystick不见了:
但是点击屏幕就会出现了:
原文链接:csdn.net
声明: 本文由(zqcyou)原创编译,转载请保留链接: 手机3D游戏开发:自定义Joystick的相关设置和脚本源码
手机3D游戏开发:自定义Joystick的相关设置和脚本源码的更多相关文章
- 【转】 [Unity3D]手机3D游戏开发:场景切换与数据存储(PlayerPrefs 类的介绍与使用)
http://blog.csdn.net/pleasecallmewhy/article/details/8543181 在Unity中的数据存储和iOS中字典的存储基本相同,是通过关键字实现数据存储 ...
- Android 3D游戏开发
OpenGL ES(OpenGL Embedded System) Android 3D游戏开发技术宝典:OpenGL ES 2.0(android 3d游戏开发技术宝典 -opengl es 2.0 ...
- Unity 4.2.0 官方最新破解版(Unity3D 最新破解版,3D游戏开发工具和游戏引擎套件)
Unity是一款跨平台的游戏开发工具,从一开始就被设计成易于使用的产品.作为一个完全集成的专业级应用,Unity还包含了价值数百万美元的功能强大的游戏引擎.Unity作为一个游戏开发工具,它的设计主旨 ...
- Unity3D ——强大的跨平台3D游戏开发工具(六)
第十一章 制作炮台的旋转 大家知道,炮台需要向四周不同的角度发射炮弹,这就需要我们将炮台设置成为会旋转的物体,接下来我们就一起制作一个会旋转的炮台. 第一步:给炮台的炮筒添加旋转函数. 给炮台的炮筒部 ...
- Unity 3D游戏开发引擎:最火的插件推荐
摘要:为了帮助使用Unity引擎的开发人员制作更完美的游戏.我们精心挑选了十款相关开发插件和工具.它们是:2D Toolkit.NGUI.Playmaker.EasyTouch & EasyJ ...
- 【Unity】1.0 第1章 Unity—3D游戏开发和虚拟现实应用开发的首选
分类:Unity.C#.VS2015 创建日期:2016-03-23 一.简介 Unity是跨平台2D.3D游戏和虚拟现实高级应用程序的专业开发引擎,是由Unity Technologies公司研制的 ...
- DirectX12 3D 游戏开发与实战第八章内容(下)
DirectX12 3D 游戏开发与实战第八章内容(下) 8.9.材质的实现 下面是材质结构体的部分代码: // 简单的结构体来表示我们所演示的材料 struct Material { // 材质唯一 ...
- DirectX12 3D 游戏开发与实战第八章内容(上)
8.光照 学习目标 对光照和材质的交互有基本的了解 了解局部光照和全局光照的区别 探究如何用数学来描述位于物体表面上某一点的"朝向",以此来确定入射光照射到表面的角度 学习如何正确 ...
- 5 个最好的3D游戏开发工具(转)
转自:http://www.open-open.com/news/view/33a4f0 5 个最好的3D游戏开发工具 jopen 2012-11-19 22:56:21 • 发布 摘要:UDK(th ...
随机推荐
- php中类的声明与使用
<?php /**php语言是支持面向对象编程的,对于面向对象的编程,学过java和C++的人都知道啊! *如果不清楚的去baidu问一下就可以了. */ //我们来定义一个类,定义类的关键字是 ...
- 3DSoftRenderer
研究了好几天基本的图形学,对于光栅化的大致过程有点了解了,很感谢网上的很多大牛的无私奉献,我就写一下这几天的总结,希望也能对网络上的知识做出一点点点的贡献. 屏幕有什么特点,无非是一排排的像素点,每个 ...
- 【BZOJ 1085】 [SCOI2005]骑士精神
Description 在一个5×5的棋盘上有12个白色的骑士和12个黑色的骑士, 且有一个空位.在任何时候一个骑士都能按照骑士的走法(它可以走到和它横坐标相差为1,纵坐标相差为2或者横坐标相差为2, ...
- Technical diagrams for SharePoint 2013
sharepoint2013技术图表 http://technet.microsoft.com/zh-cn/library/cc263199.aspx SharePoint 2013 的可下载内容 h ...
- WDC2106 iOS10新特性及开发者要注意什么
昨晚苹果在旧金山召开了WWDC,看了WWDC2016直播,我们发现变得谨慎而开放的苹果在新一版四大平台系统中展示了很多变化,当然重中之重还是伟大的iOS.通过试用iOS10beta版,除了长大了的更强 ...
- 怎样修改Windows7环境变量
在使用电脑的时候要运行某些特定的应用程序时需要修改系统的环境变量,例如安装JAVA时我们就需要配置系统的环境变量.那什么是环境变量呢?环境变量一般是指在操作系统中用来指定操作系统运行环境的一些参数,比 ...
- js原生代码编写一个鼠标在页面移动坐标的检测功能,兼容各大浏览器
function mousePosition(e) { //IE9以上的浏览器获取 if (e.pageX || e.pageY) { return { ...
- ASP.NET MVC 数据分页思想及解决方案代码
作为一个程序猿,数据分页是每个人都会遇到的问题.解决方案更是琳琅满目,花样百出.但基本的思想都是差不多的. 下面给大家分享一个简单的分页器,让初学者了解一下最简单的分页思想,以及在ASP.NET MV ...
- DeepFace--Facebook的人脸识别(转)
DeepFace基本框架 人脸识别的基本流程是: detect -> aligh -> represent -> classify 人脸对齐流程 分为如下几步: a. 人脸检测,使用 ...
- Spark中shuffle的触发和调度
Spark中的shuffle是在干嘛? Shuffle在Spark中即是把父RDD中的KV对按照Key重新分区,从而得到一个新的RDD.也就是说原本同属于父RDD同一个分区的数据需要进入到子RDD的不 ...