vujadin / BabylonHx

Port of Babylon.js 3D engine to Haxe.
http:/paradoxplay.com/babylonhx
Apache License 2.0
188 stars 43 forks source link

Fix compatibility with snow #54

Closed mrcdk closed 8 years ago

mrcdk commented 8 years ago

Snow typedarray implementation changed the arrayAccess set_*() behavior, it doesn't let you use the pattern var v = a[0] = 0; This PR fixes it.

mrcdk commented 8 years ago

It changed because of this issue https://github.com/HaxeFoundation/haxe/issues/4554

vujadin commented 8 years ago

Thanks!