Babybus-u3d技術交流-UGUI研究院之控件以及按鈕的監聽事件系統
我相信大家在做NGUI開發的時候處理事件都會用到UIEventListener,那么UGUI中怎么辦呢?先看UGUI的事件有那些吧。
Supported Events
The Eventsystem supports a number of events, and they can be customised further in user custom user written InputModules.
The events that are supported by the StandaloneInputModule and TouchInputModule are provided by interface and can be implemented on a MonoBehaviour by implementing the interface. If you have a valid EventSystem configured the events will be called at the correct time.
IPointerEnterHandler – OnPointerEnter – Called when a pointer enters the objectIPointerExitHandler – OnPointerExit – Called when a pointer exits the objectIPointerDownHandler – OnPointerDown – Called when a pointer is pressed on the objectIPointerUpHandler – OnPointerUp – Called when a pointer is released (called on the original the pressed object)IPointerClickHandler – OnPointerClick – Called when a pointer is pressed and released on the same objectIBeginDragHandler – OnBeginDrag – Called on the drag object when dragging is about to beginIDragHandler – OnDrag – Called on the drag object when a drag is happeningIEndDragHandler – OnEndDrag – Called on the drag object when a drag finishesIDropHandler – OnDrop – Called on the object where a drag finishesIScrollHandler – OnScroll – Called when a mouse wheel scrollsIUpdateSelectedHandler – OnUpdateSelected – Called on the selected object each tickISelectHandler – OnSelect – Called when the object becomes the selected objectIDeselectHandler – OnDeselect – Called on the selected object becomes deselectedIMoveHandler – OnMove – Called when a move event occurs (left, right, up, down, ect)ISubmitHandler – OnSubmit – Called when the submit button is pressedICancelHandler – OnCancel – Called when the cancel button is pressed
[http://docs.unity3d.com/460/Documentation/Manual/SupportedEvents.html
OK 怎么樣才能讓UGUI監聽的方式和NGUI差不多呢? 這里我給大家引一個思路,把下面代碼放在你的項目里。
using UnityEngine;
using System.Collections;
using UnityEngine.EventSystems;
public class EventTriggerListener:
UnityEngine.EventSystems.EventTrigger
{
public delegate void VoidDelegate(GameObjectgo);
public Void DelegateonClick;
public VoidDelegate onDown;
public VoidDelegate onEnter;
public VoidDelegate onExit;
public VoidDelegate onUp;
public
VoidDelegate
onSelect
;
public VoidDelegate onUpdateSelect;
static public EventTriggerListener
Get(GameObject go)
{
EventTriggerListener listener=go.GetComponent<EventTriggerListener>();
if(listener== null)
listener=go.AddComponent<EventTriggerListener>();
return listener;
}
public override void OnPointerClick( PointerEventData eventData)
{
if(onClick!=null)
onClick(gameObject);
}
public override void OnPointerDown(PointerEventData eventData)
{ if(onDown!=null)
onDown(gameObject);
}
public override void OnPointerEnter(PointerEventData eventData)
{ if(onEnter!=null)
onEnter(gameObject);
}
public override void OnPointerExit (PointerEventData eventData)
{
if(onExit!=null)
onExit(gameObject);
}
public override void
OnPointerUp(PointerEventData eventData)
{if(onUp!=null)
onUp(gameObject);
}
public override
void OnSelect(BaseEventData eventData)
{
if(onSelect!=null)
onSelect(gameObject);
}
public override void
OnUpdateSelected(BaseEventData eventData)
{
if(onUpdateSelect!=null)
onUpdateSelect(gameObject);
}
}
然后在你的界面里面寫入監聽按鈕的代碼。
using UnityEngine;
using System.Collections;
using UnityEngine.UI;
using UnityEngine.EventSystems;
usingUnityEngine.Events;
public class UIMain:MonoBehaviour
{ Button button;
Image image;
void Start()
{
button=transform.Find("Button").GetComponent<Button>();
image=transform.Find("Image").GetComponent<Image>();
EventTriggerListener.Get(button.gameObject).onClick=OnButtonClick;
EventTriggerListener.Get(image.gameObject).onClick=OnButtonClick;
}
private void OnButtonClick(GameObject go)
{
//在這里監聽按鈕的點擊事件
if(go==button.gameObject)
{
Debug.Log("DoSomeThings");
}
}
}
雖然還有一些別的監聽方式,但是我覺得這種方式是最科學的,大家可根據自己項目的需求繼續拓展EventTriggerListener類。