Open lilleyse opened 2 years ago
Or we could take the complete opposite approach and do as little as possible in Python. The examples in https://github.com/NVIDIA-Omniverse/kit-extension-template-cpp show how to write a Carbonite plugin that hooks directly into the update loop.
An initial Python API was added in https://github.com/CesiumGS/cesium-omniverse/pull/496. This issue could stay open until we have versioning and documentation figured out.
Related to https://github.com/CesiumGS/cesium-omniverse/issues/3 and https://github.com/CesiumGS/cesium-omniverse/issues/4
We should have a lightweight Python API that wraps the C++ 3D Tiles streaming API.
This is the API used by our Omniverse Kit extensions. It should also be generic enough that it can be used by other Kit extensions and even non-Omniverse Python code.
Currently we use pybind11 to generate a Python Dynamic Module (.pyd), which includes some baked-in documentation. See PythonBindings.cpp. In addition to this we probably need some basic
.py
wrapper code to create a proper Python module.