├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitmodules ├── README.md ├── VL.Devices.Ultraleap.HDE.vl ├── VL.Devices.Ultraleap.vl ├── deployment └── VL.Devices.Ultraleap.nuspec ├── help └── Explanation Overview of available nodes.vl ├── runtimes └── win-x64 │ └── native │ └── LeapC.dll └── src ├── Enums.cs ├── Helper.cs ├── VL.Devices.Ultraleap.csproj └── VL.Devices.Ultraleap.sln /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvvv/VL.Devices.Ultraleap/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvvv/VL.Devices.Ultraleap/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvvv/VL.Devices.Ultraleap/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvvv/VL.Devices.Ultraleap/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvvv/VL.Devices.Ultraleap/HEAD/README.md -------------------------------------------------------------------------------- /VL.Devices.Ultraleap.HDE.vl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvvv/VL.Devices.Ultraleap/HEAD/VL.Devices.Ultraleap.HDE.vl -------------------------------------------------------------------------------- /VL.Devices.Ultraleap.vl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvvv/VL.Devices.Ultraleap/HEAD/VL.Devices.Ultraleap.vl -------------------------------------------------------------------------------- /deployment/VL.Devices.Ultraleap.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvvv/VL.Devices.Ultraleap/HEAD/deployment/VL.Devices.Ultraleap.nuspec -------------------------------------------------------------------------------- /help/Explanation Overview of available nodes.vl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvvv/VL.Devices.Ultraleap/HEAD/help/Explanation Overview of available nodes.vl -------------------------------------------------------------------------------- /runtimes/win-x64/native/LeapC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvvv/VL.Devices.Ultraleap/HEAD/runtimes/win-x64/native/LeapC.dll -------------------------------------------------------------------------------- /src/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvvv/VL.Devices.Ultraleap/HEAD/src/Enums.cs -------------------------------------------------------------------------------- /src/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvvv/VL.Devices.Ultraleap/HEAD/src/Helper.cs -------------------------------------------------------------------------------- /src/VL.Devices.Ultraleap.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvvv/VL.Devices.Ultraleap/HEAD/src/VL.Devices.Ultraleap.csproj -------------------------------------------------------------------------------- /src/VL.Devices.Ultraleap.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvvv/VL.Devices.Ultraleap/HEAD/src/VL.Devices.Ultraleap.sln --------------------------------------------------------------------------------