Legacy Documentation: Version 5.1
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Selectable.OnMove

Switch to Manual
public function OnMove(eventData: EventSystems.AxisEventData): void;

Parameters

eventData The EventData usually sent by the EventSystem.

Description

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);
}