nlisker

Results 233 comments of nlisker

If you look at the linked project, its build file uses `javah` to allow loading the `JFbxLib` dll in `de.tesis.dynaware.javafx.graphics.importers.fbx.JFbxLib.`. If we can get that working, I will write the...

> I've skimmed through the Windows FBX SDK config and I can see the libfbxsdk-mt.lib file. So, I might be able to build a .dll from JFbxLib.cpp / .java Do...

> Re: open source loaders. Oh, that's an idea. It implies that we need 2 steps conversion, but I assume we could slowly replace the original code with JavaFX code....

I was actually reviewing it just now. Same as with apps, this is not the way the tests should be ordered. While it allows to run them from Eclipse, the...

The default package is a pre-existing bad practice, but doesn't pose an issue, I tried it myself. It makes little sense to add just one source folder while neglecting all...

@kevinrushforth If this fell through the cracks please add it to the list too :) It's a blocker for future work.

The title of your PR should match the title of the JBS issue. Moreover, #108 already tackles this issue with a different approach and 2 PRs on the same issue...

Visual test program: ```java import javafx.animation.Animation; import javafx.animation.Interpolator; import javafx.animation.KeyFrame; import javafx.animation.KeyValue; import javafx.animation.RotateTransition; import javafx.animation.ScaleTransition; import javafx.animation.Timeline; import javafx.animation.TranslateTransition; import javafx.application.Application; import javafx.beans.binding.Bindings; import javafx.geometry.Point3D; import javafx.scene.Group; import javafx.scene.Scene;...