IHomeHandler

Interface to handle Home Button interaction.

MethodDescription

OnHomeAction

Called when the home button of the controller is pressed

using JMRSDK.InputModule;
using UnityEngine;
public class InterfaceExample: MonoBehaviour, IHomeHandler
{
    public void OnHomeAction() {
        Debug.Log("OnHomeAction");
    }
}