417 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
1
answer
89
views
How do I create Uniform Object Buffers in Qt3d with PySide 6?
I'm writing a 3d game level editor with PySide6, using Qt3d (not QML). I stumbled upon a problem - I don't know how to create a Uniform Buffer Objects with Qt3d. Basically I want to pass a list of ...
0
votes
1
answer
96
views
Render the view of a Qt3DWindow to an image
I have a Qt3DWindow inside a QWidget container, with a QSphere added to it (and material, lighting, camera). This works all well when I launch it and I can see the sphere. I now want to "capture&...
2
votes
2
answers
158
views
Glass material in Qt3D C++ program?
I am writing a simulation program in C++ that renders a 3D scene in a QML Scene3D object from C++. It works well, but I would like to add almost transparent cone meshes to the scene.
I tried using ...
0
votes
0
answers
121
views
QLayerFilter and QObjectPicker doesn't work properly in Qt3D, are there any alternatives?
There is a potential bug in Qt3D that prevents meshes instantiated with different QLayers from functioning properly with a framegraph containing two or more QLayerFilter nodes. But implementing ...
-1
votes
1
answer
84
views
QT3D Scene3D geometry renderer not visible
I am trying to use QT3D to display a point cloud. In order to test the rendering, i created a simple QT3D project with a main.cpp file and a main.qml file. I understand that QT3D is different from ...
0
votes
0
answers
57
views
How to get all picked entities in Qt3D when entities overlap?
I am developping an app relying on Qt3D and using PySide2.
I've several entities in my scene, some of them overlapping. Each of my entities have a QObjectPicker component and the QPickingSettings ...
0
votes
1
answer
103
views
Set CullFace to Front and Back in Qt3D - issue with ActiveFrameGraph
I want my textured mesh (non-manifold) to display the texture color on both outside and inside faces (it currently displays as completely white inside)
I have found from this 6-year-old post that I ...
1
vote
2
answers
148
views
Texture (QTexture2D) from image file applied to Qt3D mesh appears as plain gray - Python
I am trying to apply a texture from a jpg file to a mesh (.obj file).
Both files originate from a 3D scanner and can be open in 3D tools, showing correctly.
How can I get a Qt3D mesh object to ...
0
votes
1
answer
145
views
OpenGL: Qt3D.Renderer.OpenGL.Backend: Unable to find suitable Texture Unit for "diffuseTexture" solution
I am using QT 5.15.10 to render a 3d model (Collada dae file format)
When I try to load the file, the above OpenGL: Qt3D.Renderer.OpenGL.Backend: Unable to find suitable Texture Unit for "...
0
votes
2
answers
202
views
Example program which uses QClipPlane from Qt3D
I'm looking for some example code of how to use QClipPlane, which is part of the Qt3D framework: https://doc.qt.io/qt-5/qt3drender-qclipplane.html.
I can take the "basicshapes-cpp" demo ...
0
votes
0
answers
95
views
QOpenGLContext in PyQT with Multiprocessing
I have have hit a roadblock as my mix of knowledge of Python, OpenGL and googling is not enough to find a solution to the following problem.
I need to use multiprocessing (or a spawn instance of ...
0
votes
0
answers
153
views
Transform texture for QML Qt3D material
In my project I have to set some textures for models and configure their orientation. I'm using Qt 5.15 for now.
I managed to put some texture for DiffuseSpecularMaterial setting its diffuse: property ...
1
vote
0
answers
110
views
Multiple objects with same material Qt3D
I dynamically generate 3D objects with the same material (around 100 objects). Creating a material for each individual object consumes a significant amount of memory. Is there a way to use one "...
0
votes
0
answers
93
views
Qt3D signal not sent or not caught
Based on the official example given in Qt, I try to catch keys inputs using Qt3DInput::QKeyboardHandler.
So after the following piece of code:
Qt3DCore::QTransform *sphereTransform = new Qt3DCore::...
2
votes
1
answer
192
views
QText2DEntity Does not Render
I have a couple of questions, all surrounding the QText2DItem and while I'm unable to get a MWE in the time that I have to perform this task, I'm hoping to hear some speculation on what could fix the ...