Search Unity

Feedback Mesh Read/Write Enabled should be off by default (?)

Discussion in 'Editor & General Support' started by andyz, Jun 28, 2019.

  1. andyz

    andyz

    Joined:
    Jan 5, 2010
    Posts:
    2,276
    Read/Write Enabled is on by default for meshes, maybe a legacy thing but it is not a good idea generally if it increases memory use - I can't imagine most people need it enabled.
    Should it be off by default?
     
  2. ArachnidAnimal

    ArachnidAnimal

    Joined:
    Mar 3, 2015
    Posts:
    1,832
    I always wondered about this too. Fist thing I do when import a model is un-check that box.
     
  3. andyz

    andyz

    Joined:
    Jan 5, 2010
    Posts:
    2,276
    Further feedback - don't think the new feedback system is gonna work, it will all be lost in the huge forum!
     
    Marc-Saubion likes this.
  4. mikelortega

    mikelortega

    Joined:
    Feb 5, 2014
    Posts:
    47
    I have the impression that the Read/Write Enabled checkbox doesn't make a big difference, at least on Windows Standalone projects. I hope someone can give us some more insight into this.
     
  5. radiantboy

    radiantboy

    Joined:
    Nov 21, 2012
    Posts:
    1,633
    It uses 2x more memory by storing an extra copy, so no need unless you use a meshCollider.
     
    mikelortega likes this.
  6. Tkrain42

    Tkrain42

    Joined:
    Jul 25, 2015
    Posts:
    43
    Or you want to use the models with the advanced NavMesh tools. NavMeshSurface whines when there is something not read/write enabled in scene. Basically "this will work now, but won't work once you build your game"
     
    Gravesend, mikelortega and radiantboy like this.
  7. hetuohua

    hetuohua

    Joined:
    May 13, 2021
    Posts:
    2
    There are other reasons for Unity to keep the additional copy in the system memory regardless of whether the flag is enabled or not (but it will always keeps a reference in video memory):

    • If the Mesh used as a Skinned Mesh.
    • If the Mesh is a candidate for dynamic batching.
    • A particle system uses the Mesh as an emitter.
    In certain cases when the Mesh is used with a Mesh Collider, this option also needs to be enabled. These cases include:

    • Negative scaling (for example (-1, 1, 1))
    • Shear transform (for example when a rotated Mesh has a scaled parent transform).
     
  8. radiantboy

    radiantboy

    Joined:
    Nov 21, 2012
    Posts:
    1,633
    Where did you get this information ? I dont see it anywhere here
    https://docs.unity3d.com/ScriptReference/Mesh-isReadable.html