Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


fnPtr

The pointer to the native function that is called from the Java code.
Read time 1 minuteLast updated 4 days ago

Definition

  • Type: Field
  • Namespace: UnityEngine
  • Assembly: UnityEngine.AndroidJNIModule
public IntPtr fnPtr

Remarks

Obtain this pointer by calling
Marshal.GetFunctionPointerForDelegate
, where the delegate refers to a method annotated with
MonoPInvokeCallback
attribute. The method must have the signature:
static ReturnType MyMethod(IntPtr jniEnv, IntPtr objectOrClass, ...);