Search Unity

  1. Welcome to the Unity Forums! Please take the time to read our Code of Conduct to familiarize yourself with the forum rules and how to post constructively.
  2. Join us on March 30, 2023, between 5 am & 1 pm EST, in the Performance Profiling Dev Blitz Day 2023 - Q&A forum and Discord where you can connect with our teams behind the Memory and CPU Profilers.
    Dismiss Notice

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)...