Thomas Vogelpohl

Results 14 comments of Thomas Vogelpohl

Hi, just enabled SIMD instructions for Arm Neon and the example wavemachine runs really well with more than 5300 particles on the Google Nexus 9. Very neat. I have not...

Hi, I have traced through the code a bit and found the following: A loader in ui.qml is responsible for loading a new example scene when a new entry in...

And I do not know why the example 'Demolition' showed the problem, while the other examples did not.

Hi, I am loading the static lib like this: ```c++ #include #include #include int main(int argc, char *argv[]) { QGuiApplication app(argc, argv); QQmlApplicationEngine engine; Box2DPlugin plugin; plugin.registerTypes("Box2DStatic"); engine.load(QUrl(QStringLiteral("qrc:/ui.qml"))); return app.exec();...

Somehow my comment above is not showing the includes properly: ```c++ #include #include #include ```

Hi Bjorn, if I understand you correctly, adding: ```c++ qmlProtectModule("Box2D", 2); ``` should allow the static lib to be registered with: ```c++ plugin.registerTypes("Box2D"); ``` without problem from the existing dynamic...

Neat, that would make things a lot easier with the static lib. Thanks for the hint.

@GugaDozero yes, I will change it. Just need to find time. This change makes my repo so similar to the stock qml-box2d, that it should be enabled in the stock...

Hi Joseph, in the release branch you have the file: /examples/ui.qml which combines all the examples into one. Are you referring to this file ? I have issued pull request...

@Joseph, Sorry for the late reply. It took a while to find time to compile your qml-box2d version. I do like your work on the library and I do like...