0

Click here to see the image

I am using SOP, then I render them
For the line I used a rectangle, then a transform, and then a material to change it's color I also used an LFO with a NULL to animate the transform in the X axis

Lucia Mnfs
  • 37
  • 1
  • 7

1 Answers1

0

You can definitely use Geo instancing to create copies.

Geometry COMP WIKI

There are some good examples of how do to this in the OP Snippets scene.

OP Snippets

Matthew Wachter
  • 132
  • 1
  • 7
  • @JJJ TouchDesigner is a node based programming environment that uses a Python interface for some actions. In this user's particular case, the most efficient solution is to use the nodes in the interface rather than implementing a solution in Python (which is possible but not preferred). One solution might be to use a Python OP that manipulates the geometry with an attached callback script, another might be to do it with a C++ TOP compiled in VS. Instancing via the Geo COMP happens on the GPU which is significantly faster than the previously mentioned. – Matthew Wachter May 09 '19 at 00:58