Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
Loading...
Searching...
No Matches
qtriggerbody_p.h
Go to the documentation of this file.
1// Copyright (C) 2021 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
3
4#ifndef TRIGGERBODY_H
5#define TRIGGERBODY_H
6
7//
8// W A R N I N G
9// -------------
10//
11// This file is not part of the Qt API. It exists purely as an
12// implementation detail. This header file may change from version to
13// version without notice, or even be removed.
14//
15// We mean it.
16//
17
18#include <QtQuick3DPhysics/qtquick3dphysicsglobal.h>
20#include <QtQml/QQmlEngine>
21
23
25{
27 Q_PROPERTY(int collisionCount READ collisionCount NOTIFY collisionCountChanged)
28 QML_NAMED_ELEMENT(TriggerBody)
29public:
31
32 void registerCollision(QAbstractPhysicsNode *collision);
33 void deregisterCollision(QAbstractPhysicsNode *collision);
34
35 int collisionCount() const;
37
39 void bodyEntered(QAbstractPhysicsNode *body);
40 void bodyExited(QAbstractPhysicsNode *body);
41 void collisionCountChanged();
42
44 QSet<QAbstractPhysicsNode *> m_collisions;
45};
46
48
49#endif // TRIGGERBODY_H
virtual QAbstractPhysXNode * createPhysXBackend()=0
Definition qset.h:18
QTriggerBody()
\qmltype TriggerBody \inherits PhysicsNode \inqmlmodule QtQuick3D.Physics
Combined button and popup list for selecting options.
#define QML_NAMED_ELEMENT(NAME)
#define Q_PROPERTY(...)
#define Q_OBJECT
#define Q_SIGNALS
#define Q_QUICK3DPHYSICS_EXPORT