Skip to main content

IBackHandler

Interface to handle Back Button interaction.

MethodDescription
OnBackActionCalled when the back button of the controller is pressed
using JMRSDK.InputModule;
using UnityEngine;
public class InterfaceExample: MonoBehaviour, IBackHandler
{
public void OnBackAction() {
Debug.Log("OnBackAction");
}
}