Python Script
The Python script file in an Asset Transformer Studio plugin
Read time 1 minuteLast updated 10 hours ago
Inputs are recovered in . Here is an example of a tessellation based on user inputs:
my_custom_plugin.pyfrom pxz import * def my_custom_plugin(parameter_1, parameter_2, parameter_3): print('Hello World') allScene = [[scene.getRoot()]] algo.tessellate(allScene, parameter_1, parameter_2, parameter_3)
Sample Scripts
See the Sample Scripts page to learn about sample scripts.