Search Unity

Poly count when Modelling

Discussion in 'Formats & External Tools' started by Chaos, Aug 5, 2006.

  1. Chaos

    Chaos

    Joined:
    Aug 2, 2006
    Posts:
    15
    Im just learning 3d modelling and read that game engines dont like a lot of polys on the models.

    Im just wondering if anyone has a poly figure that they try and stick to when designing game models or a rough number to stay below ?

    And any tips for keeping the polys down ?

    Cheers
     
  2. Aras

    Aras

    Unity Technologies

    Joined:
    Nov 7, 2005
    Posts:
    4,770
    Some tips and numbers here. In general, it's not that the engine does not like polys; most often it's the graphics card that is concerned about them. So the numbers largely depend on what hardware are you targeting.

    When it comes to optimizing graphics, the two most important things are reducing the object count, and optimizing pixel lights / shaders. Polygons usually are not the bottleneck.
     
  3. drJones

    drJones

    Joined:
    Oct 19, 2005
    Posts:
    1,351
    more info here:
    http://www.unifycommunity.com/wiki/index.php?title=General_Performance_Tips

    this page will show you some of the specs for half-life 2 models (read down to performance budgets) if your curious about a AAA title:
    http://developer.valvesoftware.com/wiki/Model_Creation_Overview

    my specs so far (mostly based on the unity docs - i'm not sure if this is final, still learning myself ; )

    level components: 1500-4000

    weapons: 1200+/- max

    characters: 1500-2000 (haven't done any yet but its what i'm planning)
     
  4. Chaos

    Chaos

    Joined:
    Aug 2, 2006
    Posts:
    15
    Thanks for the links, thats gave me something to work with.