MakeJoints (Function): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>GoldenUrg Copied from "Common functions" |
>Mr Doom Bringer No edit summary |
||
Line 1: | Line 1: | ||
<onlyinclude> | {| | ||
{{Function| | |<onlyinclude>{{Function| | ||
name = MakeJoints | name = MakeJoints | ||
|arguments = | |arguments = | ||
Line 6: | Line 6: | ||
|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. | ||
|object = [[RBX.lua.FlagStand (Object)|Flagstand]], [[RBX.lua.Part (Object)|Part]], [[RBX.lua.Model (Object)|Model]], [[RBX.lua.Seat (Object)|Seat]], [[RBX.lua.SpawnLocation (Object)|SpawnLocation]], [[RBX.lua.Workspace (Service)|Workspace]] | |object = [[RBX.lua.FlagStand (Object)|Flagstand]], [[RBX.lua.Part (Object)|Part]], [[RBX.lua.Model (Object)|Model]], [[RBX.lua.Seat (Object)|Seat]], [[RBX.lua.SpawnLocation (Object)|SpawnLocation]], [[RBX.lua.Workspace (Service)|Workspace]] | ||
|}} | |}}</onlyinclude> | ||
</onlyinclude> | |} | ||
== Description == | == Description == |
Revision as of 23:55, 13 July 2010
|
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 |
Usage
Brick Form:
brick = game.Workspace.Brick brick:MakeJoints()
Model Form:
model = game.Workspace.Model model:MakeJoints()