Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for html5/web target #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions oimohx/physics/dynamics/RigidBody.hx
Original file line number Diff line number Diff line change
Expand Up @@ -833,9 +833,9 @@ class RigidBody {
inline public function getQuaternion():Quat {
return new Quat().setFromRotationMatrix(this.rotation);
}*/
inline public function getMatrix(): #if !js Array<Float> #else Float32Array #end {
inline public function getMatrix(): #if !html5 Array<Float> #else Float32Array #end {
var m = this.matrix.elements;
#if js
#if html5
var r:Float32Array = new Float32Array(9);
#else
var r:Array<Float> = [];
Expand Down