Releases: florianblume/qt3d-widget
Releases · florianblume/qt3d-widget
2.1 Multisampling
Included multisampling functionality.
2.0: Full compatibility
- Removed dependencies on Qt3D internal classes
- Made OpenGL use the texture Qt3D renders offline to
- Should now be compatible with most Qt3D versions
Version 1.0
Version 1.0 of the Qt3D widget compiled on Ubuntu 20.04.
You can either use the static library (libqt3d-widget.a
) in your project, which will be compiled into the executable. Or you use the dynamic linked library (libqt3d-widget.so
).
Note:
If you want to use the dynamic linked library specify
LIBS += -L../path/to/your/libs/folder/ -lqt3d-widget
If you want to use the static library but keep the dynamic library in the same folder you must specify the full file name like so:
LIBS += ../path/to/your/libs/folder/libqt3d-widget.a
Or otherwise qmake
will use the dynamic version. The example test project is built using the static library.
The necessary header files are in the include
folder.