This repository is a fork of the awesome td-rs with more plugins added.
You can download pre-built versions of the plugins from the releases.
Then, move or extract the downloaded file to the TouchDesigner plugins directory.
The default paths for macOS and Windows are currently the following (you may need to create the Plugins folder yourself):
- Windows:
C:\Users\<your username>\Documents\Derivative\Plugins\ - macOS:
/Users/<your username>/Library/Application Support/Derivative/TouchDesigner099/Plugins
Alternatively, you can build and install the plugin you want yourself by following the instructions on the original repo.
You can find the new operators under the Custom tab in the OP Create Dialog in TouchDesigner.
A plugin that allows you to control a Lasercube via Wifi. It takes the output of a Laser CHOP as the input.
Make sure the sample rate of the Laser CHOP is equal to that of the Lasercube CHOP and that it doesn't exceed the device's max sample rate.
This plugin is still in development. You may experience visual glitches or disconnects.
A plugin that allows you to send values from Touch Designer to Unreal Engine and vice-versa in realtime.
There is a detailed and complete step-by-step guide with text and videos available in English and German. It is recommended to follow one of those instead of the steps below.
- Install the plugin as described above
- Open or create a TouchDesigner project and place an
Unreal Engine ConnectionCHOP. - In the parameters for the CHOP, click
Addnext toCallback DAT(you don't need to do anything with that DAT but it's needed by the plugin as a workaround for reading the input channel names). - Open or create a project in Unreal Engine (tested with UE 5.4.1 but other versions may work as well)
- Create a new C++ class via the
Toolsmenu to create a C++ project if you don't have one already - Download the contents of the repository with the files for the Unreal Engine side
- Move the
TouchDesignerConnectionfolder from the downloaded repository into the<UE project location>/Source/<UE project name>folder (there should also be the files<UE project name>.cppand<UE project name>.Build.csin there). - Add
"Networking"and"Sockets"to the list ofPublicDependencyModuleNamesin the<UE project name>.Build.csfile - Open
<UE project name>/Source/<UE project name>/Public/<the class you created earlier>.h. Copy<whatever>_APIafter theclasskeyword (probably in line 10). - Open
<UE project name>/Source/<UE project name>/TouchDesignerConnection/TouchDesignerConnectionActor.hand replaceBLANKTEST1_APIwith what you copied. - Compile your Unreal Engine C++ project
- Find the
TouchDesignerConnectionActorin theC++ Classes/<UE project name>/TouchDesignerfolder inside the Unreal Engine Content Browser and drag it into the level view to place it in the world. - You're now ready to send values between TouchDesigner and Unreal Engine (you need to run the Unreal Engine project to establish a connection)
- To send values from TD to UE, attach a CHOP with one or more channels to the input of the
Unreal Engine ConnectionCHOP. The values will now appear underReceived Valueson theTouchDesignerConnectionActorinstance. You can e.g. access these values via blueprints. - To send values from UE to TD, add entries to
Sent Valueson theTouchDesignerConnectionActormanually or e.g. via a blueprint. The output of theUnreal Engine ConnectionCHOP will then contain the values. - (You can also have TD and UE running on different computers in the same network as long as you adjust the IP addresses accordingly)
- (If you want to run multiple instances of the plugin, you can change the ports. Make sure they are the same in each TD-UE pair but no two pairs use the same ports)
- To send values from TD to UE, attach a CHOP with one or more channels to the input of the