Entity or other in ApllicationWindow
-
Hello I'm trying to figure out how to show in the applicationwindow an entity with a mesh, first I do not know if you can do I find nothing on the documentation, could you help me or show me the right path? Thank you
import QtQuick.Controls 1.4 import QtQuick 2.2 as QQ2 import Qt3D.Core 2.0 import Qt3D.Render 2.0 import Qt3D.Input 2.0 import Qt3D.Extras 2.0 ApplicationWindow { id: window visible: true menuBar: MenuBar { Menu { title: "File" MenuItem { text: "OpenFile" } MenuItem { text: "Close" } } Menu { title: "Edit" MenuItem { text: "Cut" } MenuItem { text: "Copy" } MenuItem { text: "Paste" } } } Entity{ id: entityMesh ancor://????? } } -
There are examples on how to use Qt3D included in QtCreator. When you start QtCreator the topmost entry in the left views list (where Edit, Debug, etc. is) says Welcome. In there click on examples and search for 3D. There is for example the Qt3D Materials QML example. This should get you started.
