Skip to content Skip to sidebar Skip to footer

Android Game Development - How Can I Fill A Circle With A Repeated Pattern?

I'm currently developing a game for Android. As part of the game, I need to have a circle that increases and decreases in size, but not with a simple single-colour paint fill. Ins

Solution 1:

You want to do a simple Canvas.drawCircle(), but using a Paint with a BitmapShader.


Post a Comment for "Android Game Development - How Can I Fill A Circle With A Repeated Pattern?"