FileMesh
The FileMesh object applies a mesh to a BasePart when parented to it. Its properties are inherited by the SpecialMesh object.
Memory category | PhysicsParts |
---|
Member index 2
Description
The FileMesh object applies a textured mesh to a BasePart when parented to it. Its properties are inherited by the SpecialMesh object.
What is a FileMesh?
FileMeshes allow user uploaded meshes to be applied to a BasePart. The mesh that is applied is dependent on the FileMesh.MeshId property. A texture can also be applied to this mesh using FileMesh.TextureId.
Although it is not an abstract class, and can be used by developers, all FileMesh properties are inherited by the SpecialMesh object. A SpecialMesh behaves identically to the FileMesh object when its SpecialMesh.MeshType is set to 'FileMesh'. Although both objects are functional, the SpecialMesh object is the official supported class.
For more information on using meshes, please see the SpecialMesh page.
History 12
- 645 Change ValueType of TextureId from Content to ContentId
- 645 Change ValueType of MeshId from Content to ContentId
- 486 Change ThreadSafety of TextureId from ReadOnly to ReadSafe
- 486 Change ThreadSafety of MeshId from ReadOnly to ReadSafe
- 462 Change ThreadSafety of TextureId from to ReadOnly
- 462 Change ThreadSafety of MeshId from to ReadOnly
- 79 Change Tags of FileMesh from [preliminary] to []
- 78 Change Tags of FileMesh from [] to [preliminary]
- 79 Change Tags of FileMesh from [preliminary] to []
- 47 Add TextureId
- 47 Add MeshId
- 47 Add FileMesh
Members 2
MeshId
Type | Default | |
---|---|---|
ContentId |
The MeshId is the content ID of the mesh that is to be displayed.
The content ID for a mesh is generated when a developer uploads a mesh to the Roblox website.
How do I create a mesh?
Meshes can currently only uploaded using MeshParts or the asset manager. Once uploaded however, the content ID for the mesh can be used for the MeshId property. For more information, see Meshes.
Thread safety | ReadSafe |
---|---|
Category | Data |
Loaded/Saved | true |
TextureId
Type | Default | |
---|---|---|
ContentId |
The TextureId is the content ID of the image that is to be applied to used for the meshes texture. When the TextureId property is set to an empty string, no texture will be applied to the mesh.
How can I change the texture of a mesh?
Using the TextureId property, the texture of a mesh can be changed without having to reupload the mesh. To do this, a new image will need to be uploaded to Roblox with the desired texture. The original texture image file can be obtained by exporting the mesh using the 'Export Selection' option in Roblox Studio. The image file will be saved alongside the exported .obj file.
The new texture can then be re-uploaded to Roblox as a Decal and its content ID can be applied to the mesh using the TextureId property.
How can I make a textured mesh?
A mesh can only be textured if the mesh has been UV mapped. UV mapping refers to the practice of projecting a texture map onto a mesh. This cannot be done using Roblox Studio and has to be done using an external 3D modelling application such as Blender.
Thread safety | ReadSafe |
---|---|
Category | Data |
Loaded/Saved | true |