Skip to content

Latest commit

 

History

History
47 lines (33 loc) · 1.62 KB

File metadata and controls

47 lines (33 loc) · 1.62 KB

VredDTrackModule

Python code for integrating Advanded Realtime Tracking DTrack data into VRED plugins. Currently supports the DTrack body 6d and flystick 6df2 as well as the finger tracking gl data format.

Note that the current state of this module is still experimental.

Prerequisites

Installation

  • Install numpy into the VRED python environment
    • Find the VRED python interpreter, e.g. in C:\Program Files\Autodesk\VRED-<version>\lib\python
    • Open a commandline in the corresponding directory and enter .\python.exe -m pip install numpy
  • For usage with VredDTrackPlugin:
    • Find the VRED ScriptPlugins directory, e.g. C:\Users\<User>\Documents\Autodesk\VRED-<version>\ScriptPlugins
    • Install VredDTrackPlugin to ScriptPlugins
    • In the corresponding parent directory of ScriptPlugins create the subdirectories site-packages\VredDTrackModule
    • Copy all files of this repository to site-packages\VredDTrackModule
    • The folder structure in C:\Users\<User>\Documents\Autodesk\VRED-<version> then looks like
       ├─ ScriptPlugins
       │  └─ VredDTrackPlugin
       │	  ├─ VredDTrackPlugin.py
       │	  └─ ...
       └─ site-packages
          └─ VredDTrackModule
       	  ├─ dtrack_module.py
       	  └─ ...
      
    • For other locations of VredDTrackModule adopt the value of the variable sitePackages in VredDTrackPlugin

Usage

See project VredDTrackPlugin for a usage example.