Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

Selectable.OnMove

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public function OnMove(eventData: EventSystems.AxisEventData): void;
public void OnMove(EventSystems.AxisEventData eventData);

Parámetros

eventData The EventData usually sent by the EventSystem.

Descripción

Determine in which of the 4 move directions the next selectable object should be found.

#pragma strict
// Required when using Event data.
//When the focus moves to another selectable object, Invoke this Method.
public function OnMove(eventData) {
	//Assigns the move direction and the raw input vector representing the direction from the event data.
	var moveDir = eventData.moveDir;
	var moveVector = eventData.moveVector;
	//Displays the information in the console
	Debug.Log(moveDir + ", " + moveVector);
}
using UnityEngine;
using System.Collections;
using UnityEngine.UI;
using UnityEngine.EventSystems;// Required when using Event data.

public class ExampleClass : MonoBehaviour, IMoveHandler { //When the focus moves to another selectable object, Invoke this Method. public void OnMove (AxisEventData eventData) { //Assigns the move direction and the raw input vector representing the direction from the event data. MoveDirection moveDir = eventData.moveDir; Vector2 moveVector = eventData.moveVector;

//Displays the information in the console Debug.Log (moveDir + ", " + moveVector); } }