1// Copyright (C) 2019 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only
6\title Qt Quick 3D QML Types
7\brief Provides the QML types to include 3D items into a Qt Quick scene.
9This is the QML frontend for using the spatial renderer and scenegraph. For the
10time being, all 3D content goes through offscreen textures (FBO)s so that they
11can be composed into Qt Quick scenes (as a QQuickItem).
13Import the QtQuick3D module with the following statement:
19\section1 QtQuick3D QML Types
21\generatelist qmltypesbymodule QtQuick3D
23\section1 QtQuick3D.Helpers QML Types
25Import the QtQuick3D.Helpers module with the following statement:
28import QtQuick3D.Helpers
31\generatelist qmltypesbymodule QtQuick3D.Helpers
33\section1 QtQuick3D.AssetUtils QML Types
35Import the QtQuick3D.AssetUtils module with the following statement:
38import QtQuick3D.AssetUtils
41\generatelist qmltypesbymodule QtQuick3D.AssetUtils
43\section1 QtQuick3D.Particles3D QML Types
45Import the QtQuick3D.Particles3D module with the following statement:
48import QtQuick3D.Particles3D
51\generatelist qmltypesbymodule QtQuick3D.Particles3D
53\section1 Obsolete QML Types
55The following QML types are now obsolete. Obsolete types are no longer
56maintained. They are provided to keep old source code working, but they can be
57removed in a future release. We strongly advise against using these classes in
60\generatelist obsoleteqmltypes
62\section1 QML Types with Obsolete Properties or Methods
64The following QML types contain one or more properties or methods that are now
65obsolete. Obsolete members are no longer maintained. They are provided to keep
66old source code working, but they can be removed in a future release. We
67strongly advise against using these obsolete members in new code. Click on a
68type to see its deprecated members.
70\generatelist obsoleteqmlmembers
76 \qmlmodule QtQuick3D.AssetUtils
77 \title Qt Quick 3D Asset Utility QML Types
79 \brief Provides a way to load 3D assets directly from source at runtime.