We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Encountering an issue trying to compile with Away3D 5.0.8, in Openfl 8.8.0, Lime 7.2.1 when import away3d.loaders.parsers.Parsers; is called
C:\HaxeToolkit\haxe\lib\away3d\5,0,8\away3d\loaders\parsers\MD2Parser.hx:415: chars 4-24 : Error: This kind of operation is not supported
This refers to the line _byteData.position++;
If I comment our the reference to MD2Parser.hx it compiles OK
The text was updated successfully, but these errors were encountered:
Does it work if you replace the line with _byteData.position = _byteData.position + 1?
_byteData.position = _byteData.position + 1
Sorry, something went wrong.
Yep, seems to be working now, thanks.
What version of Haxe are you using?
EDIT: Oh, it looks like the version online is already patched?
https://github.com/openfl/away3d/blob/master/away3d/loaders/parsers/MD2Parser.hx#L415
...it looks like this should be in Away3D 5.0.8, so I'm a little confused
Haxe 3.4.7
No branches or pull requests
Encountering an issue trying to compile with Away3D 5.0.8, in Openfl 8.8.0, Lime 7.2.1 when import away3d.loaders.parsers.Parsers; is called
C:\HaxeToolkit\haxe\lib\away3d\5,0,8\away3d\loaders\parsers\MD2Parser.hx:415: chars 4-24 : Error: This kind of operation is not supported
This refers to the line _byteData.position++;
If I comment our the reference to MD2Parser.hx it compiles OK
The text was updated successfully, but these errors were encountered: