The QCoreSettings class holds settings related to core data handling process. More...
Header: | #include <QCoreSettings> |
CMake: | find_package(Qt6 COMPONENTS 3dcore REQUIRED) target_link_libraries(mytarget PRIVATE Qt6::3dcore) |
qmake: | QT += 3dcore |
Since: | Qt 6.0 |
Instantiated By: | CoreSettings |
Inherits: | Qt3DCore::QComponent |
QCoreSettings(Qt3DCore::QNode *parent = nullptr) | |
bool | boundingVolumesEnabled() const |
void | setBoundingVolumesEnabled(bool boundingVolumesEnabled) |
void | boundingVolumesEnabledChanged(bool boundingVolumesEnabled) |
The QCoreSettings component should be set as a component of the scene root entity (although it could be anywhere in the scene graph). There should be a single instance.
It can be used to control some of Qt 3D's behavior.
Holds whether bounding volumes handling is enabled. This is true by default. Disabling this allows to reduce the amount of computations performed each frame. If you are using picking or frustum culling you should keep this enabled (even when providing explicit bounding volumes sizes using QBoundingVolume).
Access functions:
bool | boundingVolumesEnabled() const |
void | setBoundingVolumesEnabled(bool boundingVolumesEnabled) |
Notifier signal:
void | boundingVolumesEnabledChanged(bool boundingVolumesEnabled) |
Constructs a new QCoreSettings with parent.
© The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
https://doc.qt.io/qt-6.2/qt3dcore-qcoresettings.html