tsmithf

Results 4 comments of tsmithf

I believe it may be referring to an amendment to the project function in containers\View3D.hx... public function project(point3d:Vector3D):Vector3D { var v:Vector3D = _camera.project(point3d); if (!shareContext){ v.x = (v.x + 1.0)*_globalWidth/2.0;...

Yep, seems to be working now, thanks.

Looking into the audio issue further I implemented the getVolume() function in the VlcBitmap.hx file... ``` public function getVolume():Float { #if (cpp && !mobile) if (libvlc!=null && initComplete) return libvlc.getVolume();...