2022-06-08 12:47:24 +00:00
|
|
|
// Copyright (C) 2015 Klaralvdalens Datakonsult AB (KDAB).
|
2024-02-23 14:41:04 +00:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
2015-10-26 15:34:58 +00:00
|
|
|
|
|
|
|
import Qt3D.Core 2.0
|
|
|
|
import Qt3D.Render 2.0
|
|
|
|
|
|
|
|
Entity {
|
|
|
|
id: root
|
|
|
|
|
|
|
|
property Material material: null
|
|
|
|
property alias meshSource: mesh.source
|
|
|
|
property alias translation: transform.translation
|
|
|
|
property alias rotation: transform.rotation
|
|
|
|
property alias scale: transform.scale
|
|
|
|
|
|
|
|
components: [ transform, mesh, material ]
|
|
|
|
|
|
|
|
Transform {
|
|
|
|
id: transform
|
|
|
|
}
|
|
|
|
|
|
|
|
Mesh {
|
|
|
|
id: mesh
|
|
|
|
}
|
|
|
|
}
|