IBackHandler

Interface to handle Back Button interaction.

MethodDescription

OnBackAction

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