Hello, everyone!
I installed kha from git (through haxelib), updated all submodules, pulled https://github.com/lewislepton/kha-examples/tree/master/TWEEN, modified Main.hx:
System.init({}, function () {
new Project();
});
and Project.hx:
public function loadAll(){
block = new Block(0, 0);
TweenX.to(block, {x: 350, y: 350}).time(5.0).ease(EaseX.bounceOut).repeat(100);
}
built html5, flash, windows, android targets in release mode (through HaxeDevelop).
html5 and flash versions showed pretty smooth movements of the box;
in windows version (ran on Windows 10 Home Edition) the box did not move and after I closed the window, TWEEN.exe continued to reside in the active processes list in Task Manager;
android version showed 2-3 FPS on emulator and the same on Samsung Galaxy Note II.
Openfl equivalent is performing a lot better.