تشخیص کلیک و نگه داشتن دکمه در یونیتی_رفتن به مرحله دلخواه با کلیک روی یک دکمه
سه شنبه, ۱۶ شهریور ۱۳۹۵، ۰۱:۱۶ ق.ظ
عدم اجرای کلیک روی باتن در یونیتی/چرا کلیک روی باتن عمل نمی کند؟چرا کلیک روی دکمه عمل نمی کند؟چرا کلیک روی دکمه کار نمی کند؟
چرا کلیک روی باتن کار نمی کند؟
using UnityEngine; using UnityEngine;
using System.Collections;
using UnityEngine.UI;
using UnityEngine.EventSystems;
public class restart : MonoBehaviour, IPointerDownHandler
{
public void OnPointerDown(PointerEventData eventData)
{
Debug.Log(this.gameObject.name + " Was Clicked.");
}
}
رویدادهای دیگه: تو رفرنس سایت اصلی یونیتی توضیحات آخر هست.
OnDeselect Unset selection and transition to appropreate state.
OnMove Determine in which of the 4 move directions the next selectable object should be found.
OnPointerDown Evaluate current state and transition to pressed state.
OnPointerEnter Evaluate current state and transition to appropreate state.
OnPointerExit Evaluate current state and transition to normal state.
OnPointerUp Evaluate eventData and transition to appropriate state.
OnSelect Set selection and transition to appropreate state.
۹۵/۰۶/۱۶