Version: 2017.4
public bool isReadable ;

説明

モデルがインポートされたときの読み取り/書き込みの有効ステータス

スクリプトから作成されたダイナミックメッシュの場合、常に true を返します。

Meshes not marked readable will throw an error on accessing any data arrays from script at runtime. Access is allowed in Unity's Editor outside of the game and rendering loop.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Start() { Mesh mesh = GetComponent<MeshFilter>().sharedMesh; print(mesh.isReadable); } }