blob: cd408dc37f4dbbe82ff76bd3c8a9d74bd5bbdf1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#ifndef QSSGMORPHTARGET_H
#define QSSGMORPHTARGET_H
//
// W A R N I N G
// -------------
//
// This file is not part of the Qt API. It exists purely as an
// implementation detail. This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
//
#include <QtQuick3D/private/qquick3dobject_p.h>
#include <QtQml/QQmlListProperty>
#include <QtCore/QVector>
#include <QtCore/QUrl>
QT_BEGIN_NAMESPACE
class QQuick3DModel;
class Q_QUICK3D_EXPORT QQuick3DMorphTarget : public QQuick3DObject
{
Q_OBJECT
Q_PROPERTY(float weight READ weight WRITE setWeight NOTIFY weightChanged)
Q_PROPERTY(MorphTargetAttributes attributes READ attributes WRITE setAttributes NOTIFY attributesChanged)
QML_NAMED_ELEMENT(MorphTarget)
QML_ADDED_IN_VERSION(6, 0)
public:
enum class MorphTargetAttribute {
Position = 0x01,
Normal = 0x02,
Tangent = 0x04,
Binormal = 0x08,
TexCoord0 = 0x10,
TexCoord1 = 0x20,
Color = 0x40
};
Q_ENUM(MorphTargetAttribute)
Q_DECLARE_FLAGS(MorphTargetAttributes , MorphTargetAttribute)
Q_FLAG(MorphTargetAttributes)
explicit QQuick3DMorphTarget(QQuick3DObject *parent = nullptr);
~QQuick3DMorphTarget() override;
float weight() const;
MorphTargetAttributes attributes() const;
public Q_SLOTS:
void setWeight(float castsShadows);
void setAttributes(QQuick3DMorphTarget::MorphTargetAttributes attributes);
Q_SIGNALS:
void weightChanged();
void attributesChanged();
private:
friend QQuick3DModel;
QSSGRenderGraphObject *updateSpatialNode(QSSGRenderGraphObject *node) override;
void markAllDirty() override;
size_t numAttribs();
enum QSSGMorphTargetDirtyType {
WeightDirty = 0x00000001,
MorphTargetAttributesDirty = 0x00000002,
};
quint32 m_dirtyAttributes = 0xffffffff; // all dirty by default
void markDirty(QSSGMorphTargetDirtyType type);
float m_weight = 0.0;
MorphTargetAttributes m_attributes = MorphTargetAttribute::Position;
size_t m_numAttribs = 1;
};
QT_END_NAMESPACE
#endif // QSSGMORPHTARGET_H
|