Search Unity

cost of a network view

Discussion in 'Multiplayer' started by llavigne, Mar 21, 2008.

  1. llavigne

    llavigne

    Joined:
    Dec 27, 2007
    Posts:
    977
    What's the cost of a Network View ?

    I'm debating between attaching passive (OFF) network view to each of a lot of objects (128 bits serialized crunched down to 16 bits) so I can access them through the network by their viewID
    or collecting the objects into an array for each parent and accessing them via the array index on the parent's network view (less 128 bits serialized crunched down to 16 bits + 32 bits serialized)...