Skip to main content

IFn1Handler

Interface to handle Fn1 Button interaction.

MethodDescription
OnFn1ActionCalled when pressing the Fn1 button, on touchpad click
using JMRSDK.InputModule;
using UnityEngine;
public class InterfaceExample: MonoBehaviour, IFn1Handler
{
public void OnFn1Action() {
Debug.Log("OnFn1Action");
}
}