-
Notifications
You must be signed in to change notification settings - Fork 357
Optimizing Bitmap Usage
Florent Espanet edited this page Jan 10, 2021
·
4 revisions
Some tips:
- Use power of 2 sizes for textures
- For fast tile rendering, use
h2d.TileGroup - Have a lot of separate bitmaps? Combine them in one texture.
- For particle rendering, use
h2d.SpriteBatch - Use
engine.drawCallsto see draw calls. Less is better.