I’m trying to get Away3D to work with Haxe and I’m having some basic issues.
So I installed the pre-requisites:
% haxelib install openfl-stage3d
Then I installed Away3D as:
% haxelib git away3d https://github.com/away3d/away3d-core-openfl.git
Then I added it to my project.xml file:
<classpath path="away3d" />
But I am still getting “Class not found: away3d.containers.Scene3D” error when trying to import. I’ve even tried “away3d/src”, “away3d/git/src”.
**EDIT**
So what worked is putting the full path in the classpath as follows:
<classpath path="/usr/lib/haxe/lib/away3d/git/src" />
Hopefully this helps anyone else having this problem.