Saturn graphics question

I'm curious about something. Saturn is well-known for having awesome 2D sprite power. That said, I've seen several games in which there is an ugly checker board effect on some sprites. In Mortal Kombat Trilogy, the characters' shadows are checkered. Cyber Speedway also has checkered textures. I've seen checkering in many other games as well, but I don't remember their names off the top of my head.

My question is, was that just style choice, or was there a technical reason for it?
 
Have you ever played a Saturn on a CRT?
If you did, you would likely use S-Video or composite video. These video signals mask the checkerboard pattern and turn it into transparency.
That is what you are looking at; it is an antiquated but very cheap and effective way to achieve 50% transparency.

Make no mistake; this method is preferable in many situations since it always works, provided the video is being output via composite\s-video to a CRT. The other methods of hardware transparency are more complicated and computationally expensive.
 
Yeah I always play my '90s consoles on a CRT. My Saturn is connected with composite video.

Although the games I mentioned above when I saw the checkering were from videos I watched on a computer. I don't have a very big physical library for Saturn. Now that you have explained that, I might look up videos of games I have so that I can see if I see the checkering on my computer screen, and then compare that to my CRT.

Update: I have GunGriffon, so I looked that one up. It did show checker board effects on YouTube, but not on my CRT. You are right. Thank you, I never knew that resulted in translucency on CRTs. That's pretty cool; I learned something.
 
Last edited:

It's a pity that this article is wrong on this : "The Saturn is not capable of handling transparency effects between sprites."

Fortunately, the Low Score Boy video the article is based on doesn't do that mistake :
https://www.youtube.com/watch?v=f_OchOV_WDg

With its half transparency mode, VDP1 can blend RGB sprites together (but not with VDP2 or palette sprites background where it's opaque).

The article confuses VDP1's half transparency with how VDP1 can set a palette sprite to be blended by VDP2 to the VDP2 background (but not with other sprites). VDP2 blending can be set to use a set of 32 ratios or additive blending, not just half transparency. Case in point, in the articles's Guardian heroes example, the cape sprite is indeed blended by VDP2 with the background, but not with a half transparency ratio, it's using additive blending.

On top of being limited to RGB sprites to work correctly, VDP1's half transparency is about 6 times slower than opaque drawing and exhibits overdraw artifacts where it's applied several times inside a sprite when the sprite shape is pinched.

VDP1's mesh effect has the advantage of making a sprite semi-transparent to both other sprites and to the VDP2 background, whatever the texture type of the sprites, whatever their shape, and without performance penalty. The drawback, aside of the dithered look on sharp displays, is that mesh is not a cumulative effect : it erases any sprite already drawn with mesh on the same area.
 
Back
Top