Documentation

Support

Asset Transformer SDK


User Manual

Python API

C# API

Changelog

Discussions

Asset Transformer SDK

Import files

Learn how to import files into the Pixyz Asset Transformer SDK for processing and conversion.
Read time 1 minuteLast updated 21 hours ago

API functions:
  • io.importScene: import one file at a time. Function is multi-threaded when possible (depending on format).
  • io.importFiles: import multiple files at a time. If possible, each file will be imported in a different thread, making it more efficient than just looping over files and using
    io.importScene
    .

Load Pixyz files (.pxz)

.pxz
is Pixyz Engine proprietary file format. Saving/Loading .pxz files is extremely fast and we recommend using it if going from one instance of Pixyz to another one.
API functions:
  • core.load: load and replace the current scene by the one from the .pxz file
  • core.save: save the current scene as .pxz

Related Topics