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-03-13 13:52:49 +00:00
|
|
|
|
2015-10-15 14:05:37 +00:00
|
|
|
import Qt3D.Core 2.0
|
2015-10-18 08:58:19 +00:00
|
|
|
import Qt3D.Render 2.0
|
2016-04-11 12:58:17 +00:00
|
|
|
import Qt3D.Extras 2.0
|
2015-03-13 13:52:49 +00:00
|
|
|
|
|
|
|
Entity {
|
|
|
|
id: root
|
2015-11-07 19:02:14 +00:00
|
|
|
property alias position: transform.translation
|
|
|
|
property alias scale: transform.scale
|
2015-03-13 13:52:49 +00:00
|
|
|
property alias material: gooch
|
|
|
|
property alias source: mesh.source
|
|
|
|
|
|
|
|
components: [
|
2015-11-07 19:02:14 +00:00
|
|
|
Transform { id: transform },
|
2015-03-13 13:52:49 +00:00
|
|
|
Mesh { id: mesh },
|
|
|
|
GoochMaterial { id: gooch }
|
|
|
|
]
|
|
|
|
}
|