I would like to access left and right hands positions(x,y,z) from a Leap Motion Controller in Unity 3D 2021.1.17f1
I have imported Unity Modules v4.8.0 Core, Hands and InteractionEngine.
I can see the Leap Motion Hands when running my Unity program.
How can I call/use LeapC API library from a Unity C# script?
LeapC sample program interpolationSample.c or pollingSample.c that uses
LEAP_TRACKING_EVENT GetFrame() from LeapC.h to get data from LeapMotionController how many hands are detected and the position of their palms.
or how would a C# script look like with UnityModules v.4.8.0 that did the same as
LeapC sample programs interpolationSample or pollingSample?
Thanks