image-20240920-113800.png

The DataTemo plug-in creates an image animation sequence, using a method much like the one used for making a cartoon film.

The basic input for DataTemo is a single image consisting of many tiled and equally sized squares set up in a matrix.

Note: This plug-in is located in: Plugins -> Container plug-ins -> Data

Information: DataPool plug-ins only work properly on a single channel on the same machine.

DataTemo Properties

  • Format: Specifies the format of the incoming data. Format options specify the axis which the data relates to.

  • Matrix Width (Cells in row): Determines the number of cells for each row.

  • Matrix Height (Cells in column): Determines the number of cells for each column.

Note: Texture mapping should be Vertex to prevent an incorrect texture ratio, especially if Matrix Width and Matrix Height are different.

Example

Show Japanese day of week texture from a single image.

image-20240920-113640.png
  1. Import an image that contains all seven day of week symbols, starting with Monday.

  2. Drop the image into the scene.

  3. Change texture mapping to Vertex.

  4. Add DataTemo to the same container of the image.

  5. Keep Format property as X because this example image contains all symbols in horizontal order.

  6. Change Matrix Width property to 7. You may have to change the scaling of the container or add a Rectangle geometry to correct the size and scale of clipped symbol.

  7. Set Field Name property to DataPool variable that contains day of week index start from 0 (Monday). To use current day of week from DataClock, follow these steps:

    1. Go to Built Ins > Scene Plugins tab and Scene Settings > Plugin tab.

    2. Add DataClock to the scene.

    3. Go back to Built Ins > Container Plugins tab, add DataMath into the same container.

    4. Set Argument 1 property to WEEKDAY.

    5. Set Result property to WEEKDAY0 because WEEKDAY from DataMath starts from 1.

    6. Set Operation property to --.

    7. Set Field Name property of DataTemo to WEEKDAY0.