Format
typescript
Mesh.isReadableclass: Mesh
Description
Whether the current mesh is enabled for read/write.
If the mesh supports read/write, it returns true; otherwise, it returns false.
Parameters
| param_name | type | description |
|---|
Return
| type | description |
|---|---|
boolean | Whether read/write is enabled |
Code Example
typescript
let mesh = Resources.Load<Mesh>(Mesh, "meshId");
mesh.isReadable;