Dmitry Stril
Dmitry Stril

Reputation: 1465

Render svg-file in LibGDX

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

Answers (1)

m.antkowicz
m.antkowicz

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

Related Questions