Search Unity

Painting floor tiles?

Discussion in 'Scripting' started by spacepaw, Dec 7, 2010.

  1. spacepaw

    spacepaw

    Joined:
    Jul 18, 2010
    Posts:
    23
    Any suggestions on making paintable grid based surface like in sims? where you can change floor tiles?
     
  2. ivkoni

    ivkoni

    Joined:
    Jan 26, 2009
    Posts:
    978
    make each floor tile a separate object. This is not as bad as it may seem, since unity (pro at least) will batch the meshes that share the same material before rendering so you will not suffer too big of a performance hit there. (so I have been told). Having each tile a separate object will make your life a lot easier in terms of changing floor tiles. I would try this approach first.