This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Simple video scrubbing example using Leap Motion | |
Made for Processing – requires LeapMotionP5 library | |
An open hand pauses the video and then allows you to scrub the video left and right. | |
Closing your hand plays the video. | |
http://brendandawes.com/blog/leapmotion | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using UnityEditor; | |
using System.Collections; | |
using System; | |
using System.Linq; | |
using System.Reflection; | |
[InitializeOnLoad] | |
public class RXLookingGlass | |
{ |