IFn2Handler

Interface to handle Fn2 Button interaction.

using JMRSDK.InputModule;
using UnityEngine;
public class InterfaceExample: MonoBehaviour, IFn2Handler
{
 public void OnFn2Action() {
  Debug.Log("OnFn1Action");
 }
}

Last updated