|
|
|
|
|
by systoll
1385 days ago
|
|
> In a flat monitor centered in front of your head, the distance between your eyes and different pixels on the screen varies depending on how close they are to the edge, thus distorting the sizes of the rendered sprites. Curving the edges reduces this effect (depending of course on the exact curvature and distance to the monitor). That’s the same distortion that we encounter for all real-world objects all the time, and process automatically. We can’t turn that off, so I’m not sure it makes sense to try and compensate for it. For 3D games, we’re trying to trick ourselves that we’re looking into a window. Curving the screen gives us a bigger window without a bigger monitor. But 2D games are usually representing a flat surface intentionally. EG: Mario runs to the right. Rendering it to a curved screen without correction suggests that he’s instead running clockwise around the viewer. For big enough stages, it brings into question why he doesn’t loop back on himself. Correcting for that would mean shrinking things on the sides of the screen – effectively rendering to a flat surface behind the curved monitor. |
|