MeshPart

MeshPart : BasePart

Overview

Properties

DoubleSided

bool

Determines whether to render both faces of polygons in the mesh.

Code Samples

local MeshPart = script.Parent

print(MeshPart.DoubleSided)

MeshId

string

The MeshId property is content ID of the mesh asset to be displayed on the MeshPart.

Code Samples

local MeshPart = script.Parent

print(MeshPart.MeshId)

TextureId

string

The TextureId property is content ID of the texture tobe displayed on the MeshPart.

Code Samples

local MeshPart = script.Parent

print(MeshPart.TextureId)

MeshSize

Vector3

MeshSize is representing the size of the mesh displayed on the MeshPart in a 3D space.

Code Samples

local MeshPart = script.Parent

print(MeshPart.MeshSize)

Methods

ApplyMesh

Currently not supported.

Parameters

Instance InMeshPart

Return

void

Code Samples

Events

Last updated