Oops... Are Your Unity Sprites Too Tight?

Published August 11, 2020 by Ruben Torres Bonet (The Gamedev Guru)
Do you see issues with this article? Let us know.
Advertisement

[Read the original blog post at Unity Sprites: tight-fit or full-rect?]

Should you choose tight-fit or full-rect for your sprites in Unity?

You know, these graphical elements you use in ALL your games...

After all, you most likely use sprite renderers. Or at least, UI Images.

In this post, you will learn the difference between these two mesh types. And when to use each.

No more guesstimates. Know exactly what you're doing.

TABLE OF CONTENTS

1What's the Sprite Mesh Type?

2Why Unity Full-Rect Sprites Aren't That Great

3Are Tight Sprites Superior?

4The (Few) Reasons to Use Full-Rect Sprites

5What's Next?

What's the Sprite Mesh Type?

Before we start, this is what I'm talking about:

Unity Sprite Mesh Type

Unity Sprite Mesh Type

I know, it's an easy-to-ignore option. After all, you have way many options in your sprite import settings.

The sprite's mesh type is all about how Unity will render your sprite in your game.

The traditional way of rendering them is in full rect mode. This means, your sprites are rendered as a full quad with transparent regions.

Unity Sprite Full Rect

Unity Sprite: Full-Rect Mesh

However, a more efficient approach is to build a tighter mesh around your sprite.

This means, you won't render your sprite as a rectangle, but as a 2D polygon.

Now, why would you get into the trouble of making a more complex shape?

Let's see why.

Why Unity Full-Rect Sprites Aren't That Great

Okay, first the biggest advantage of rendering full quads...

Drawing a quad as easy as breathing. Both for your CPU and your GPU.

However, here's the biggest drawback...

When drawing full quads, you render a vast surface full of transparent fragments. See the previous image: everything out of the circle is transparent... but also rendered.

The problem?

Rendering a big surface incurs in evil overdraw.

And overdraw is one of the biggest performance killers.

Overdraw is always hunting for innocent games to kill its frame-rate. It's especially dangerous on mobile.

So what's better than rendering a full rectangle?

Well, rendering a polygon that better fits your sprite. In other words, making our shape a little bit tighter 🙂

Are Tight Sprites Superior?

You can set the mesh type as tight in any of your sprites.

In fact, it should be the default value nowadays.

When you do that, Unity will slice your sprites so you minimize the transparent area you render.

Unity Sprite Tight

Unity Sprite: Tight Mesh

You render fewer pixels. Your graphic card thanks you with higher frame rate.

Great deal.

The (Few) Reasons to Use Full-Rect Sprites

Normally, there are VERY few cases you should use full rects.

But here are a few:

  • Your game performance is vertex-bound and you have many sprites on screen.
  • You don't use sprite renderers. Only UI images.
  • Your platform barely suffers from overdraw problems.

Because here's a caveat:

Tight sprites do not work on UI Images :---(

No matter what you do, Unity will draw all sprites as full rectangles in your UI.

That's why it pays off to cut the transparent regions off your sprites as much as you can. That includes simplifying them.

What's Next?

Not much.

In future posts, we will continue to explore more sneaky import settings that so many people forget about.

It will be great.

Till then, make sure you're following my Unity performance tips. It'll help you make sure you're on the right track.

~Ruben

Cancel Save
0 Likes 0 Comments

Comments

Nobody has left a comment. You can be the first!
You must log in to join the conversation.
Don't have a GameDev.net account? Sign up!

Featured Tutorial

Should you choose tight-fit or full-rect for your sprites in Unity? In this post, you will learn the difference between these two mesh types. And when to use each.

Advertisement
Advertisement