Skip to main content

IHomeHandler

Interface to handle Home Button interaction.

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