MakeJoints (Method): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>Camoy added |
m Text replacement - "</SyntaxHighlight>" to "</syntaxhighlight>" Tags: mobile web edit mobile edit |
||
(17 intermediate revisions by 6 users not shown) | |||
Line 1: | Line 1: | ||
<onlyinclude>{{Method | |||
|name = MakeJoints | |||
|description = Creates a joint on any side of the object that has a surface ID that can make a joint. | |description = Creates a joint on any side of the object that has a surface ID that can make a joint. | ||
| | |objects = [[BasePart]], [[Model]] | ||
}}</onlyinclude> | |||
{{clear floats}} | |||
== Description == | == Description == | ||
MakeJoints forms a bond (a joint) between bricks if they have the required surfaces types: | MakeJoints forms a bond (a joint) between bricks if they have the required surfaces types: | ||
{| | {| class="wikitable" | ||
!SurfaceType !! '''Weld''' !! '''Universal''' !! '''Studs''' !! '''Inlet''' !! '''Glue''' !! '''Smooth''' | |||
|- | |- | ||
| '''Weld''' || Weld || Weld || Weld || Weld || Weld || Weld | | '''Weld''' || Weld || Weld || Weld || Weld || Weld || Weld | ||
Line 27: | Line 26: | ||
Brick Form: | Brick Form: | ||
<syntaxhighlight lang="lua"> | |||
brick = | brick = Workspace.Brick | ||
brick:MakeJoints() | brick:MakeJoints() | ||
</ | </syntaxhighlight> | ||
Model Form: | Model Form: | ||
<syntaxhighlight lang="lua"> | |||
model = | model = Workspace.Model | ||
model:MakeJoints() | model:MakeJoints() | ||
</ | </syntaxhighlight> | ||
[[Category:Methods]] |
Latest revision as of 06:16, 27 April 2023
![]() | |
Returns | nil |
Description: | Creates a joint on any side of the object that has a surface ID that can make a joint. |
Member of: | BasePart, Model |
Description
MakeJoints forms a bond (a joint) between bricks if they have the required surfaces types:
SurfaceType | Weld | Universal | Studs | Inlet | Glue | Smooth |
---|---|---|---|---|---|---|
Weld | Weld | Weld | Weld | Weld | Weld | Weld |
Universal | Weld | Snap | Snap | Snap | Glue | No Joint |
Studs | Weld | Snap | No Joint | Snap | Glue | No Joint |
Inlet | Weld | Snap | Snap | No Joint | Glue | No Joint |
Glue | Weld | Glue | Glue | Glue | Glue | Glue |
Smooth | Weld | No Joint | No Joint | No Joint | Glue | No Joint |
Brick Form:
brick = Workspace.Brick
brick:MakeJoints()
Model Form:
model = Workspace.Model
model:MakeJoints()