Skip to main content

IFn2Handler

Interface to handle Fn2 Button interaction.

MethodDescription
OnFn2ActionCalled when pressing the Fn2 button, on touchpad double click
using JMRSDK.InputModule;
using UnityEngine;
public class InterfaceExample: MonoBehaviour, IFn2Handler
{
public void OnFn2Action() {
Debug.Log("OnFn1Action");
}
}