# Python Script

> The Python script file in an Asset Transformer Studio plugin

> **Note:**
>
> The Python API Reference is accessible [here](/asset-transformer-studio/2026.5.0/api/python/studio_functions.md).

Inputs are recovered in `my_custom_plugin.py`. Here is an example of a tessellation based on user inputs:

```python
from 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](../../../../working-with-asset-transformer-studio/scripting-with-the-python-api/sample-scripts) page to learn about sample scripts.
