MrLoick / flixel-android

Automatically exported from code.google.com/p/flixel-android
Other
0 stars 0 forks source link

Update shape renderer #39

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. run Mode example on libgdx 0.9.7
2.
3.

What is the expected output?
Runs normal

What do you see instead?
Error on FlxCamera.java Line 850

What version of the product are you using? On what operating system?
Flixel v2.55

Please provide any additional information below.

Change
line 850
flashGfx.begin(ShapeType.FilledRectangle);
line 853
flashGfx.filledRect(0, 0, width, height);

to
line 850
flashGfx.begin(ShapeType.Filled);
line 853
flashGfx.rect(0, 0, width, height);

http://www.badlogicgames.com/wordpress/?p=2809

thanks

Original issue reported on code.google.com by castro.k...@gmail.com on 19 Feb 2013 at 2:56

GoogleCodeExporter commented 8 years ago
Is already fixed since r135.

Original comment by kawingc...@gmail.com on 19 Feb 2013 at 11:03

GoogleCodeExporter commented 8 years ago
Oh i see, I am using setup-ui-20121026.jar. So the sources are not updated.

thanks

Original comment by castro.k...@gmail.com on 19 Feb 2013 at 1:00