a#55.5.1f1ţ˙˙˙˙˙Č0ĹňĂôL.`?^Ů0D7€˙˙˙˙€Ś€˛€ЀŚ€Ś€Ś€#Ś€+H€3˙˙˙˙€1€1€˙˙˙˙@ހ€ Q€j€ ™€< Ś€H H€Z˙˙˙˙ €1€1€˙˙˙˙@ހ€Q€j€ЀgŚ€Ś€Ś€#Ś€+v~ € €– €Ÿ €¨ €ą €ş €Ă €Ě €Ő €Ţ  €ç! €ń" €ű# €$ €% €&Ő€#˙˙˙˙'€1€1€˙˙˙˙(€ހ€)H€j€˙˙˙˙*€1€1€˙˙˙˙+@ހ€,Q€j€-™€*.ހ8/AssetMetaDataguiddata[0]data[1]data[2]data[3]pathNametimeCreatedoriginalChangesetoriginalNameoriginalParentHash128originalDigestbytes[0]bytes[1]bytes[2]bytes[3]bytes[4]bytes[5]bytes[6]bytes[7]bytes[8]bytes[9]bytes[10]bytes[11]bytes[12]bytes[13]bytes[14]bytes[15]labelsassetStoreReflicenseType ˙˙z{ď@îČă5^(H'7€˙˙˙˙€Ś€˛€ Ő€ ހ#.€,†€Ä€ ހ#.€,H€Ť€˙˙˙˙€1€1€˙˙˙˙ @ހ€ Q€j€ Ő€5˙˙˙˙ €1€1€˙˙˙˙ €ހ€€j€˙˙˙˙€H€›€˙˙˙˙€1€1€˙˙˙˙@ހ€Q€j€y€ € ހ#.€, €I@ž€X @ހ#.€,H€]˙˙˙˙€1€1€˙˙˙˙@ހ€Q€j€H€h˙˙˙˙€1€1€˙˙˙˙ @ހ€!Q€j€"H€z˙˙˙˙#€1€1€˙˙˙˙$@ހ€%Q€j€&MonoImporterPPtrm_FileIDm_PathIDm_DefaultReferencesexecutionOrdericonm_UserDatam_AssetBundleNamem_AssetBundleVariants˙˙˙8-l'€Łć„hŒÎA,Œ€7€˙˙˙˙€Ś€˛€Ő€ ހ.€†€Ä€ ހ.€H€Ť€˙˙˙˙€1€1€˙˙˙˙ @ހ€ Q€j€ H€ę€˙˙˙˙ €1€1€˙˙˙˙ @ހ€Q€j€ń€(˙˙˙˙€1€1€˙˙˙˙€ހ€€j€˙˙˙˙€H€›€˙˙˙˙€1€1€˙˙˙˙@ހ€Q€j€y€ € ހ.€y€< ހ.€ހCH€T˙˙˙˙€1€1€˙˙˙˙ @ހ€!Q€j€"H€`˙˙˙˙#€1€1€˙˙˙˙$@ހ€%Q€j€&H€l˙˙˙˙'€1€1€˙˙˙˙(@ހ€)Q€j€*L€{+PPtrm_FileIDm_PathIDm_DefaultReferencesm_Iconm_ExecutionOrderm_ClassNamem_Namespacem_AssemblyNamem_IsEditorScript˜˜@ŕyŻŘ]ÁúϸžkKłR Ĺzm=Assets/Standard Assets/CrossPlatformInput/Scripts/TouchPad.csTouchPad˝using System; using UnityEngine; using UnityEngine.EventSystems; using UnityEngine.UI; namespace UnityStandardAssets.CrossPlatformInput { [RequireComponent(typeof(Image))] public class TouchPad : MonoBehaviour, IPointerDownHandler, IPointerUpHandler { // Options for which axes to use public enum AxisOption { Both, // Use both OnlyHorizontal, // Only horizontal OnlyVertical // Only vertical } public enum ControlStyle { Absolute, // operates from teh center of the image Relative, // operates from the center of the initial touch Swipe, // swipe to touch touch no maintained center } public AxisOption axesToUse = AxisOption.Both; // The options for the axes that the still will use public ControlStyle controlStyle = ControlStyle.Absolute; // control style to use public string horizontalAxisName = "Horizontal"; // The name given to the horizontal axis for the cross platform input public string verticalAxisName = "Vertical"; // The name given to the vertical axis for the cross platform input public float Xsensitivity = 1f; public float Ysensitivity = 1f; Vector3 m_StartPos; Vector2 m_PreviousDelta; Vector3 m_JoytickOutput; bool m_UseX; // Toggle for using the x axis bool m_UseY; // Toggle for using the Y axis CrossPlatformInputManager.VirtualAxis m_HorizontalVirtualAxis; // Reference to the joystick in the cross platform input CrossPlatformInputManager.VirtualAxis m_VerticalVirtualAxis; // Reference to the joystick in the cross platform input bool m_Dragging; int m_Id = -1; Vector2 m_PreviousTouchPos; // swipe style control touch #if !UNITY_EDITOR private Vector3 m_Center; private Image m_Image; #else Vector3 m_PreviousMouse; #endif void OnEnable() { CreateVirtualAxes(); } void Start() { #if !UNITY_EDITOR m_Image = GetComponent(); m_Center = m_Image.transform.position; #endif } void CreateVirtualAxes() { // set axes to use m_UseX = (axesToUse == AxisOption.Both || axesToUse == AxisOption.OnlyHorizontal); m_UseY = (axesToUse == AxisOption.Both || axesToUse == AxisOption.OnlyVertical); // create new axes based on axes to use if (m_UseX) { m_HorizontalVirtualAxis = new CrossPlatformInputManager.VirtualAxis(horizontalAxisName); CrossPlatformInputManager.RegisterVirtualAxis(m_HorizontalVirtualAxis); } if (m_UseY) { m_VerticalVirtualAxis = new CrossPlatformInputManager.VirtualAxis(verticalAxisName); CrossPlatformInputManager.RegisterVirtualAxis(m_VerticalVirtualAxis); } } void UpdateVirtualAxes(Vector3 value) { value = value.normalized; if (m_UseX) { m_HorizontalVirtualAxis.Update(value.x); } if (m_UseY) { m_VerticalVirtualAxis.Update(value.y); } } public void OnPointerDown(PointerEventData data) { m_Dragging = true; m_Id = data.pointerId; #if !UNITY_EDITOR if (controlStyle != ControlStyle.Absolute ) m_Center = data.position; #endif } void Update() { if (!m_Dragging) { return; } if (Input.touchCount >= m_Id + 1 && m_Id != -1) { #if !UNITY_EDITOR if (controlStyle == ControlStyle.Swipe) { m_Center = m_PreviousTouchPos; m_PreviousTouchPos = Input.touches[m_Id].position; } Vector2 pointerDelta = new Vector2(Input.touches[m_Id].position.x - m_Center.x , Input.touches[m_Id].position.y - m_Center.y).normalized; pointerDelta.x *= Xsensitivity; pointerDelta.y *= Ysensitivity; #else Vector2 pointerDelta; pointerDelta.x = Input.mousePosition.x - m_PreviousMouse.x; pointerDelta.y = Input.mousePosition.y - m_PreviousMouse.y; m_PreviousMouse = new Vector3(Input.mousePosition.x, Input.mousePosition.y, 0f); #endif UpdateVirtualAxes(new Vector3(pointerDelta.x, pointerDelta.y, 0)); } } public void OnPointerUp(PointerEventData data) { m_Dragging = false; m_Id = -1; UpdateVirtualAxes(Vector3.zero); } void OnDisable() { if (CrossPlatformInputManager.AxisExists(horizontalAxisName)) CrossPlatformInputManager.UnRegisterVirtualAxis(horizontalAxisName); if (CrossPlatformInputManager.AxisExists(verticalAxisName)) CrossPlatformInputManager.UnRegisterVirtualAxis(verticalAxisName); } } }TouchPad&UnityStandardAssets.CrossPlatformInputAssembly-CSharp-firstpass.dll