Skip to main content

IMenuHandler

Interface to handle Menu Button interaction.

MethodDescription
OnMenuActionCalled when menu action is performed (pressing the home button twice)
using JMRSDK.InputModule;
using UnityEngine;
public class InterfaceExample: MonoBehaviour, IMenuHandler
{
public void OnMenuAction() {
Debug.Log("OnMenuAction");
}
}