When should developers go back and remaster or remake their most popular games?

  • 520@kbin.social
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    7 months ago

    3D vectors can work well, but as an artist you are often better suited by going with the N64 approach. Due to technical limitations, textures were often used quite sparsely, with vertex shading providing the main colour and textures providing details. It was especially prevalent in games with cartoon art styles such as Mario 64 and Banjo Kazooie, but even games like GoldenEye used this trick to a degree.

    The problem with pure vertex is, the more detail you add to stuff, the more calculations you are doing, and they can really add up. The same is kinda true of bitmap (in terms of resolution) but the problem doesn’t scale the same way. With that said, it will work well for a cartoony/anime art style where massive amounts of detail isn’t necessarily needed, and shaders can be used to complete the look.

    • insomniac_lemon@kbin.social
      link
      fedilink
      arrow-up
      1
      ·
      edit-2
      7 months ago

      I mean yeah we’re mostly on the same page… but it should be clear that I’m not suggesting crazy detail everywhere, mostly just being a bit more intentional with model design when possible to integrate vertex color (or another old technique, use multiple objects when it means a simpler mesh). And I mentioned Spyro’s texture/LoD system which is good, was going to mention sprite usage and also Crash having only 2 textures (shoes, back) but was too wordy (also Crash taking advantage of a linear camera for custom culling and view-specific models).

      I’d say it’s really good to give variation (and unique-ness) on detail and effects that way every tiny thing you decide to add isn’t a fixed workload. Or in some cases the opposite approach, a more re-used/modular design for certain things like characters.

      The problem with textures (aside from data w/high-res/high-color, resolution dependency, and workload) is that when you play an older game at modern resolutions (higher internal res or even just a Flash game) the elements that were designed for older resolutions/displays are really apparent next to the meshes that scale perfectly. Particularly if it’s a GUI or pre-rendered cutscene (sometimes other random stuff). Textures on meshes can still be a really solid aesthetic for the environment/characters.

      Also generated textures (see .kkrieger for an extreme example) might be a potential fix for the drawbacks, or something like textures that are designed to be used with an upscale filter (or in a similar way, maybe converting to SDF textures).

      • 520@kbin.social
        link
        fedilink
        arrow-up
        1
        ·
        7 months ago

        Yeah, we are definitely on the same page. What they did with classic Crash with minimal textures on the character, they also did the same thing with Mario in 64 and Banjo in Banjo-Kazooie.

        You could do a similar approach to environmentals for a decent effect too, such as having the texture essentially act as a very restricted form of bump map for the vertex shaded polygon. Goldeneye did this a fair bit.

        I would be interested in seeing this kind of art style make a return.