IMenuHandler

Interface to handle Menu Button interaction.

MethodDescription

OnMenuAction

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

Last updated