Drawing a circle using Andengine

后端 未结 1 1694
你的背包
你的背包 2021-01-21 03:29

I am searching a way to draw a circle using Andengine. As I can see, I can only draw lines, rectangles, and place sprites, but I cannot find a way to draw circles. How can I do

相关标签:
1条回答
  • 2021-01-21 04:09

    Indeed, you can't directly draw a circle. Alternatives are:

    • Rendering a quad with a circle texture (see this link, for example)
    • Rendering a circle that's actually a circle of connected triangles. You'd have to procedurally generate the geometry to approximate a circle. For a solid circle, that's not so hard. A hollow circle / circle outline, a bit more involved, I suppose. You could also draw a circle with lines, if that's what you want.

    Good luck.

    0 讨论(0)
提交回复
热议问题