IFn2Handler

Interface to handle Fn2 Button interaction.

MethodDescription

OnFn2Action

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