Hi guys, i saw this thread, but for me problem is unresolved.
All except DebugDraw works fine:
private function init():void()
{
//...
_debugDraw = new AWPDebugDraw(_view, _physicsWorld);
_debugDraw.debugMode = AWPDebugDraw.DBG_DrawCollisionShapes; //I tried all constants - doesn't work
}
private function handleEnterFrame(event:Event):void
{
_physicsWorld.step(_timeStep, 1, _timeStep);
_debugDraw.debugDrawWorld();
_view.render();
}
In debug mode, i step into debug draw - segments added, but i don’t see SegmentSet.
I use Away3D 4.1.4 and AwayPhysics last dev build (in release build same problem).