Search Unity

  1. If you have experience with import & exporting custom (.unitypackage) packages, please help complete a survey (open until May 15, 2024).
    Dismiss Notice
  2. Unity 6 Preview is now available. To find out what's new, have a look at our Unity 6 Preview blog post.
    Dismiss Notice

Best practice: Having a big 2k terrain or smaller connected ones

Discussion in 'World Building' started by demonixis, Jan 21, 2020.

  1. demonixis

    demonixis

    Joined:
    Aug 20, 2013
    Posts:
    185
    Hello,
    I would like to know what is best for my use case. I want to create a 1500x1500 terrain (with a 1000x1000 walkable area). What is best for that? Create a single one or create 9 connected smaller terrains?
     
  2. Flavelius

    Flavelius

    Joined:
    Jul 8, 2012
    Posts:
    945
    For walking? both will do.
     
  3. jamespaterson

    jamespaterson

    Joined:
    Jun 19, 2018
    Posts:
    402
    I agree, however one small observation is that breaking the terrain down (probably powers of two in size) carries a potential advantage that you can cull whole terrain objects which are behind the camera, which may ultimately be more performant. This does add complexity however. Good luck!
     
  4. demonixis

    demonixis

    Joined:
    Aug 20, 2013
    Posts:
    185
    Thank you guys for the quick replies!
     
    Last edited: Jan 22, 2020
    jamespaterson likes this.