Reputation: 1465
Does libGDX support rendering vector graphics? I need to draw some simple *.svg files, but can't find how to load them. Please advise
Upvotes: 3
Views: 2018
Reputation: 13571
Nope it does not.
LibGDX provides you a way to draw simple shapes (implemented as ShapeRenderer) but it cannot parse .svg probably due to being multiplatform.
Still you can use some 3rd part library designed for specify platform like svg android
Also take a look at this:
Upvotes: 3