Hi Josh. I solved it via accident 🙂
While I was toying with Feathers in my project, I added robotlegs
library and tried implementing it.
I tried to create another project from scratch with VSCode Feathers plugin and this time I changed the ordering of the libraries (gut feeling). I included robotlegs
before feathers.
Working version:
<haxelib name="openfl" />
<haxelib name="actuate" />
<haxelib name="signals" />
<haxelib name="robotlegs" />
<haxelib name="feathersui" />
Failing version:
<haxelib name="openfl" />
<haxelib name="actuate" />
<haxelib name="signals" />
<haxelib name="feathersui" />
<haxelib name="robotlegs" />
Since I am very new to Haxe, I have no idea what caused this problem.