Custom Python classes and utilities tailored for Qt built UI, in VFX-oriented DCC applications.
Documentation
Custom Python classes and utilities tailored for Qt built UI, in VFX-oriented DCC applications.
The package is available on PyPI and can be installed via pip
:
python -m pip install fxgui
The repository contains submodules, so make sure to clone the repository with the --recurse-submodules
flag:
git clone --recurse-submodules https://github.com/healkeiser/fxgui
Or, if you already cloned the repository, you can initialize the submodules with:
git submodule update --init --recursive
Important
In order to have access to the module inside your application, make sure to add fxgui
to the $PYTHONPATH
of the DCCs. For Houdini, you can find the houdini_package.json
example file.
After installing fxgui, you can run the demo:
python examples.py
Or:
from fxgui import examples
examples.main()
Please read the full documentation here.
Project Link: fxgui