QQuick3DObject Class▲
-
Header: QQuick3DObject
-
Since: Qt 5.15
-
Inherited By: QQuick3DGeometry, QQuick3DInstancing, and QQuick3DTextureData
-
Instantiated By: qml-qtquick3d-object3d.xml
-
Inherits: QObject and QQmlParserStatus
-
Inherited By: QQuick3DGeometry, QQuick3DInstancing, and QQuick3DTextureData
Detailed Description▲
Object3D is the base class for all Qt Quick 3D scene objects. Currently the types available in C++ are:
Both of these types are resource objects which directly inherit QQuick3DObject.
It should not be necessary to use QQuick3DObject directly anywhere currently because it is just an interface for supporting spatial items and resources in a 3D scene, as well as exposing similar functionality as QQuickItem for 3D scene content.
Property Documentation▲
parent : QQuick3DObject*▲
This property holds the parent of the Object3D in a 3D scene.
An Object3D's parent may not necessarily be the same as its object parent. This is necessary because the object parent may be an item that is not of type Object3D, for example the root object in a scene.
Currently for 3D items to be correctly handled by the scene manager when parenting 3D objects from C++ it is necessary to call QQuick3DObject::setParentItem before the QObject::setParent. This requirement is likely to change in a future release though.
QQuick3DObject *
newItem =
new
QQuick3DObject();
newItem-&
gt;setParentItem(parentItem);
newItem-&
gt;setParent(parentItem);
Access functions:
-
QQuick3DObject *parentItem() const
-
void setParentItem(QQuick3DObject *parentItem)
Notifier signal:
-
void parentChanged()
state : QString▲
This property holds the name of the current state of the object.
If the item is in its default state, that is, no explicit state has been set, then this property holds an empty string. Likewise, you can return an item to its default state by setting this property to an empty string.
Access functions:
-
state() const
-
void setState(const &state)
Notifier signal:
-
void stateChanged()
See Also▲
See also Qt Quick States