Overgrowth takes place in the savage world of Lugaru where rabbits, wolves and other animals are forced to use paws, claws and medieval weaponry to engage each other in battle. Combining 3rd person adventure platforming with intricate melee combat, Overgrowth achieves a unique feel. Overgrowth also benefits from Wolfire's brand new Phoenix Engine which has been built from the ground up to allow the use of cutting edge graphics, animation, and physics. Add to these exciting features Overgrowth’s realistic artificial intelligence and streamlined control system and the result is an astoundingly immersive experience.

Post news Report RSS Xtreme plant optimization

A lot of people have mentioned the plants as an area we could improve in Overgrowth. For this reason, I made a point of trying out games that have great plants, such as Crysis, S.T.A.L.K.E.R., The Hunter, and Battlefield 1943. I stared at the plants to figure out how they were built.

Posted by on

A lot of people have mentioned the plants as an area we could improve in Overgrowth. For this reason, I made a point of trying out games that have great plants, such as Crysis, S.T.A.L.K.E.R., The Hunter, and Battlefield 1943. I stared at the plants to figure out how they were built. We even went so far as to load plant assets from other games into Phoenix just to get a better look at them. It's fairly easy to make plants that look good, but it's extremely hard to make good-looking plants that use as few triangles as possible for their 3D models. Here I have boiled down what I have learned from these other games about Xtreme plant optimization!


Above are the basic building blocks of video game plants. On the left is the most modest of plant branches using a single triangle, and on the right is the Cadillac of tree branches with a whopping 6 triangles. Some of these shapes give a lot of bang for the buck, and some are not worth using. Which is best has mostly to do with how the geometry is perceived by the viewer.


You may be thinking here that because the single triangle branch looks the worst, maybe it isn't worth using. The truth is that it can be very useful to fill plant interiors, where the exterior branches are able to hide the bad angles. This is a technique used in Crysis, and can make a plant look really dense.


This branch is about as useful as using two 1tri. branches. It still has one bad angle. It is nothing special, but no real reason to avoid it.


This is the first branch option with no bad angles. This is the best basic branch piece, but not that great for something that may poke out of the bulk of the foliage.


Although this has no bad angles, the same as the 3 tri. branch, it also basically looks the same as the 3 tri. branch and so you are wasting one triangle. I don't use this unless I have a squared off branch texture, but I try to make sure that doesn't happen.


This is the best looking basic building block because the extra edge loop on the back allows you to curve the geometry naturally. This is great for smaller palm tree type leaves, and branches that are sticking out of the foliage. Plants with mostly planer branches look good with this too, like some conifers.

There are a few more basic tips for how to construct a tree that looks as dense as possible. It is important for bushy trees that the branch geometry has their planer faces pointed towards where you expect the viewer to look at the tree from. You can use all the triangles in the world, but if the player only sees your branches edge-on, it will look bad.

Does anyone else have any tips on how to optimize trees? I am always trying to improve so I would love to hear about new techniques! (permalink)


Track us on ModDB (visit our page)

Please join us here too:
Facebook icon ModDB icon Steam icon Twitter icon YouTube icon

Post comment Comments
feillyne Staff
feillyne - - 5,816 comments

So 6 triangle ones will be used? :-) Won't it up the hardware requirements?

Unfortunately, I know nothing about this stuff, so I can't help. = (

Reply Good karma+1 vote
Dra6o0n
Dra6o0n - - 534 comments

6 triangles seems a little when you use 1 piece, but since we're talking about hundreds or thousands of plants, we could guess in this formula:
( [Sets of Triangles] * [Number of sets] ) * [Number of plants]

If a plant has an average of 5~30 different sets to form a plant according to it's size, consider the smallest plant using around 5~7 sets of triangles:

5 * 6 = 30 * 100 or 1000 plants... You'd have around 300 to 3000 Triangles or poly JUST for the small plants...

The best idea is to mix 1 triangle with 2 triangle to create a illusion without them all using 3 or greater triangles each...

That means each plants needs to be customized...

Reply Good karma Bad karma+1 vote
Dra6o0n
Dra6o0n - - 534 comments

Also, they can add a optimization method where things very very far away won't be rendered to save resources, but may ruin some aspect of it when it comes to Depth of Field...

Maybe a illusion of rendering can work, having it so the game quickly renders what the player sees and semi-renders the things around him (or in this case, unrendering parts of it to save resources).

Reply Good karma Bad karma+1 vote
hushpuppy
hushpuppy - - 761 comments

I thought this article was to discuss the different LOD meshes....I havent done LOD for vegetation but im used to doing 3 different for weapons. But i guess if you want a really seamless transission.

Reply Good karma Bad karma+1 vote
Packer
Packer - - 494 comments

I was thinking of LOD when reading this, I've seen some pretty sweet LOD meshes, but rather then it instantly changing from the 2 to 1 or any other possibility the high LOD would slowly fade out while the lower LOD would slowly fade while moving away from a tree, stops that annoying tree's changing there LOD instantly within players vision, looks ugly :(

Just a thought.

Reply Good karma Bad karma+1 vote
nubblecakes
nubblecakes - - 114 comments

Couldn't you just incorporate this in to LODs? Make the furthest LOD the singe triangle pieces, and the most detailed LOD the 6 triangle pieces. I know that Crytek does a ton of LODs for their foliage.

Reply Good karma Bad karma+1 vote
PringleX
PringleX - - 55 comments

Just don't use sprite based vegetation, not even for the grass. Sprites are sooo last gen.

Reply Good karma Bad karma+3 votes
SIGILL
SIGILL - - 1,157 comments

Hmm.. not last gen (or maybe they are xD), but they are ugly most of the time.

Reply Good karma Bad karma+1 vote
Silverfisk Creator
Silverfisk - - 1,080 comments

They are using models for the grass I'm pretty sure, at least they have grass models since a few alphas back.

Reply Good karma+1 vote
Croco15
Croco15 - - 1,240 comments

Cool.

Reply Good karma Bad karma+1 vote
DariusII
DariusII - - 64 comments

I think Speedtree has the fastest/best looking implementation of foliage. Each of the leave elements are ALWAYS oriented to face the view. This gives the trees a very full bushy look.
Mind you, this doesn't work with all trees as some trees are naturally more planar (eg tropical trees).
We do a lot of foliage in our game and it's a pain in the *** getting them to look good while keeping the polycount down. I'd recommend going the speedtree route (ie. making each leaf element a sprite facing the camera) for the majority of your trees.

Reply Good karma Bad karma+1 vote
TropicalBob
TropicalBob - - 46 comments

I do believe TESIV: Oblivion had such a system. Except for staring directly up into the tree and spinning around quickly to produce some trippy leaf effects, the trees always looked rather nice.

Reply Good karma Bad karma+1 vote
Arxae
Arxae - - 718 comments

oblivion allso had speedtree implemented, so it had advanced proceduraly generated trees
OG just uses models atm basicly :)

Reply Good karma Bad karma+1 vote
Dra6o0n
Dra6o0n - - 534 comments

You can try to see if you can create illusions of it using more than 1 triangles when it is actually one...
Might take a bit of work though...

To create such illusion, lighting and reflection might be needed in it but might also cost resources from those respective uses...

Reply Good karma Bad karma+1 vote
Dra6o0n
Dra6o0n - - 534 comments

Ah I got it... For things like Pine Trees where leaves are seen on the bottom, and covers up a lot, use 2 or 3 tri just for the outside and bottom areas... For the top use 1 or 2 tri since players can't really see it that well...

Reply Good karma Bad karma+1 vote
AlekZanDer
AlekZanDer - - 2,695 comments

Nice.

Reply Good karma Bad karma+1 vote
Death_Grin
Death_Grin - - 65 comments

This is probably a far out idea that wouldn't work for technical reasons but just throwing it out there..

What about a single poly with a parallax map that supports opacity? (through a opacity map or alpha channel.) I don't know if its possible to make parallax maps really look like geometry to that degree or not at this time

Reply Good karma Bad karma+1 vote
DariusII
DariusII - - 64 comments

Parallax maps only look good if the protrusions aren't extreme (ie. similar to bump maps). You'd get massive stretching, not to mention the fact that trees have empty spaces IN BETWEEN the leaves which is impossible to emulate with a parallax map. The tree would look like a spiky mess.

Reply Good karma Bad karma+1 vote
Post a comment

Your comment will be anonymous unless you join the community. Or sign in with your social account: