Hello, I’m building an RTS game and need to find some models for the environment. However all models that I can find usually have too many faces for the scale of my game.

I would like to find for example tree models with max 100 faces that’s not in the classic cartoony low poly style, but a realistic style. Preferably even with lower quality LOD models.

Could someone point me in the right direction or give me some good search terms?

  • mapto@feddit.bg
    link
    fedilink
    arrow-up
    15
    ·
    edit-2
    2 days ago

    It’s a million dollar question, isn’t it. I’d think you’ll need to consider having baked textures as an option.

    What engine are you using? That makes a big difference.

    • youreusingitwrong@programming.devOP
      link
      fedilink
      arrow-up
      4
      ·
      3 days ago

      JMonkeyEngine, a very bare engine built in Java. I was thinking of creating a billboarded model for the last LOD level, but I need to find some models that fit first.

      If format is relevant then preferably .gltf, but anything that blender handles works.

      • mapto@feddit.bg
        link
        fedilink
        arrow-up
        5
        ·
        edit-2
        2 days ago

        I don’t know it, but if it supports transparent textures, you could try something like this: https://animium.com/2008/08/lowpoly-trees. The basic idea (not exactly what’s in the link) is that each branch is a texture on a plane facing your camera - clearly works only if camera angle doesn’t change. Depending on engine performance and distance from objects, you could simplify down to having 3-4 layers per tree. I’d call this something along the lines of “lowpoly parallax trees”. I’ve seen it working very neatly in a top-down third-person demo of Blender Game Engine a while ago.

        A neat way of producing these could be getting a hipoly model of a tree and culling sliced renders of its branches.

        Of course, if you don’t have things behind the tree, or the tree moving, you don’t need parallax at all and could bake the whole tree on a small surface.

        A lot of decisions depend on the exact affordances of the game.