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 Connection
CHOP. - In the parameters for the CHOP, click
Add
next 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
Tools
menu 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
TouchDesignerConnection
folder from the downloaded repository into the<UE project location>/Source/<UE project name>
folder (there should also be the files<UE project name>.cpp
and<UE project name>.Build.cs
in there). - Add
"Networking"
and"Sockets"
to the list ofPublicDependencyModuleNames
in the<UE project name>.Build.cs
file - Open
<UE project name>/Source/<UE project name>/Public/<the class you created earlier>.h
. Copy<whatever>_API
after theclass
keyword (probably in line 10). - Open
<UE project name>/Source/<UE project name>/TouchDesignerConnection/TouchDesignerConnectionActor.h
and replaceBLANKTEST1_API
with what you copied. - Compile your Unreal Engine C++ project
- Find the
TouchDesignerConnectionActor
in theC++ Classes/<UE project name>/TouchDesigner
folder 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 Connection
CHOP. The values will now appear underReceived Values
on theTouchDesignerConnectionActor
instance. You can e.g. access these values via blueprints. - To send values from UE to TD, add entries to
Sent Values
on theTouchDesignerConnectionActor
manually or e.g. via a blueprint. The output of theUnreal Engine Connection
CHOP 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