I am generating an Xcode project from a .pro file and want to set an xcconfig
file as the build configuration for a particular target in the project. This
means that I need to edit the .pro file to:
1) add the xcconfig file to the project
2) set the xcconfig in the build settings for the target
I am dependent on a tool that uses qmake to regenerate an xcodeproject whenever
I add a source file, and so I always have to find the way to make any changes
to the Xcode project within the .pro file. I have done well until this point
with the Info.plist file.
But now I need to be able to enabl
> > Is this just a difference of Android vs. Windows that our external BT device
> > doesn't show up as a serial device under Android like it does under
> Windows?
>
> The Android way of working is the same for Bluez/Linux (although with
> rfcomm you can achieve the same), WinRT and the Apple plat
Thanks Guiseppe,
I try to come up with a solution based on your and Sean's answer.
Cheers Volker
Am 30/08/2017 um 11:29 schrieb Giuseppe D'Angelo:
Il 30/08/2017 10:07, Volker Enderlein ha scritto:
Entity {
id: root
property Transform frame: Transform {}
property Material ma
Set the properties on the QTransform, not the QTransform itself. But in
general don't poke up into the QML layer from C++. Much better idea to bind
the transform in QML to properties on an object you export from C++ to QML.
i.e.
Entity {
components: [
Transform {
transla
Il 30/08/2017 10:07, Volker Enderlein ha scritto:
Entity {
id: root
property Transform frame: Transform {}
property Material mat: PhongMaterial { diffuse: Qt.rgba(0.8, 0.8,
0.8, 1.0) }
...
}
Later I try to update the Transform and Material from C++. But I cannot
set the prope
Thanks René,
I tried that already (but unfortunately didn't mention it), but
Qt3DCore::QTransform is derived from QNode and therefore implicitly from
QObject so it is missing the copy constructor that is needed for the
registration as metatype.
Cheers Volker
Am 30/08/2017 um 10:40 schrieb R
Try to register Qt3DCore::QTransform as a metatype in your main():
qRegisterMetaType("Qt3DCore::QTransform");
http://doc.qt.io/qt-5/qmetatype.html#qRegisterMetaType
On Wed, 30 Aug 2017 at 10:16 Volker Enderlein <
volker.enderl...@ifm-chemnitz.de> wrote:
> Hi all,
>
> for an animation system I t
Hi all,
for an animation system I try to construct some parameterized QML
components that provide access to their transformation and material via
properties. The QML part looks the following way:
import Qt3D.Core 2.0
import Qt3D.Render 2.0
import QtQuick 2.0
import Qt3D.Extras 2.0
Entity {