forked from qt-creator/qt-creator
Replace the current license disclaimer in files by a SPDX-License-Identifier. Task-number: QTBUG-67283 Change-Id: I708fd1f9f2b73d60f57cc3568646929117825813 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
41 lines
1.2 KiB
QML
41 lines
1.2 KiB
QML
// Copyright (C) 2019 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
|
|
|
import QtQuick 6.0
|
|
import QtQuick3D 6.0
|
|
|
|
IconGizmo {
|
|
id: cameraGizmo
|
|
|
|
property Model frustumModel: null
|
|
property bool globalShowFrustum: false
|
|
|
|
iconSource: "qrc:///qtquickplugin/mockfiles/images/editor_camera.png"
|
|
|
|
function connectFrustum(frustum)
|
|
{
|
|
frustumModel = frustum;
|
|
|
|
frustum.selected = selected;
|
|
frustum.selected = Qt.binding(function() {return selected;});
|
|
|
|
frustum.scene = scene;
|
|
frustum.scene = Qt.binding(function() {return scene;});
|
|
|
|
frustum.targetNode = targetNode;
|
|
frustum.targetNode = Qt.binding(function() {return targetNode;});
|
|
|
|
frustum.visible = (canBeVisible && globalShowFrustum)
|
|
|| (targetNode && selected && activeScene === scene);
|
|
frustum.visible = Qt.binding(function() {
|
|
return (canBeVisible && globalShowFrustum)
|
|
|| (targetNode && selected && activeScene === scene);
|
|
});
|
|
}
|
|
|
|
onActiveSceneChanged: {
|
|
if (frustumModel && activeScene == scene)
|
|
frustumModel.updateGeometry();
|
|
}
|
|
}
|