배우기
엔진 클래스
GeometryService
만들 수 없음
서비스

*이 콘텐츠는 AI(베타)를 사용해 번역되었으며, 오류가 있을 수 있습니다. 이 페이지를 영어로 보려면 여기를 클릭하세요.


요약
상속된 멤버

API 참조
메서드
CalculateConstraintsToPreserve
기능: CSG
GeometryService:CalculateConstraintsToPreserve(
source:Instance, destination:{any}, options:Dictionary
매개 변수
source:Instance
destination:{any}
options:Dictionary
기본값: "nil"
반환
코드 샘플
제약 조건 유지
local GeometryService = game:GetService("GeometryService")
local main, other = workspace.Part1, workspace.Part2
local success, newParts = pcall(function()
return GeometryService:SubtractAsync(main, {other})
end)
if success and newParts then
for _, p in newParts do p.Parent = workspace end
for _, rec in GeometryService:CalculateConstraintsToPreserve(main, newParts) do
if rec.Constraint then
rec.Constraint.Parent = rec.ConstraintParent
end
end
end
main:Destroy()
other:Destroy()

FragmentAsync
생성
기능: CSG
GeometryService:FragmentAsync(
part:BasePart, sites:{any}, options:Dictionary
매개 변수
sites:{any}
options:Dictionary
기본값: "nil"
반환
코드 샘플
부품 분할
local GeometryService = game:GetService("GeometryService")
local inputPart = Instance.new("Part")
inputPart.Position = Vector3.new(0, 0.7, 20)
local sites = GeometryService:GenerateFragmentSites(inputPart)
local success, fragments = pcall( function()
return GeometryService:FragmentAsync(inputPart, sites)
end)
if success and fragments then
for _, item in fragments do
local instance = item.Instance
instance.Parent = workspace
end
end

GenerateFragmentSites
기능: CSG
GeometryService:GenerateFragmentSites(
part:BasePart, options:Dictionary
매개 변수
options:Dictionary
기본값: "nil"
반환
코드 샘플
지역화된 조각
local GeometryService = game:GetService("GeometryService")
local inputPart = workspace.Part
local pos = inputPart.Position + inputPart.Size / 2
local sites = GeometryService:GenerateFragmentSites(inputPart, {Origin = pos, Radius = 1.5})
local success, fragments = pcall( function()
return GeometryService:FragmentAsync(inputPart, sites)
end)
if success and fragments then
for _, item in fragments do
local instance = item.Instance
instance.Parent = inputPart.Parent
end
inputPart:Destroy()
end

IntersectAsync
생성
기능: CSG
GeometryService:IntersectAsync(
part:Instance, parts:{any}, options:Dictionary
매개 변수
parts:{any}
options:Dictionary
기본값: "nil"
반환
코드 샘플
두 개의 부분 합치기
local GeometryService = game:GetService("GeometryService")
local mainPart = Instance.new("Part")
local otherPart = Instance.new("Part")
otherPart.Position = Vector3.new(1, 0.5, 1)
local success, newParts = pcall(function()
return GeometryService:IntersectAsync(mainPart, {otherPart})
end)
if success and newParts then
for _, newPart in pairs(newParts) do
newPart.Parent = workspace
end
end

SubtractAsync
생성
기능: CSG
GeometryService:SubtractAsync(
part:Instance, parts:{any}, options:Dictionary
매개 변수
parts:{any}
options:Dictionary
기본값: "nil"
반환
코드 샘플
두 부분 빼기
local GeometryService = game:GetService("GeometryService")
local mainPart = Instance.new("Part")
local otherPart = Instance.new("Part")
otherPart.Position = Vector3.new(1, 0.5, 1)
local success, newParts = pcall(function()
return GeometryService:SubtractAsync(mainPart, {otherPart})
end)
if success and newParts then
for _, newPart in pairs(newParts) do
newPart.Parent = workspace
end
end

SweepPartAsync
생성
기능: CSG
GeometryService:SweepPartAsync(
part:BasePart, cframes:{any}, options:Dictionary
매개 변수
cframes:{any}
options:Dictionary
기본값: "nil"
반환
코드 샘플
부품 스위프
local GeometryService = game:GetService("GeometryService")
local inputPart = Instance.new("Part")
inputPart.Shape = Enum.PartType.Ball
local cframeList = {}
for i = 1, 50 do
local rotation = CFrame.Angles(0, i * 0.2, 0)
local position = Vector3.new(0, i * 0.1, -1)
table.insert(cframeList, rotation * CFrame.new(position))
end
local success, sweptPart = pcall( function()
return GeometryService:SweepPartAsync(inputPart, cframeList)
end)
if success and sweptPart then
sweptPart.Parent = workspace
end

UnionAsync
생성
기능: CSG
GeometryService:UnionAsync(
part:Instance, parts:{any}, options:Dictionary
매개 변수
parts:{any}
options:Dictionary
기본값: "nil"
반환
코드 샘플
두 개의 부분 결합
local GeometryService = game:GetService("GeometryService")
local mainPart = Instance.new("Part")
local otherPart = Instance.new("Part")
otherPart.Position = Vector3.new(1, 0.5, 1)
local success, newParts = pcall(function()
return GeometryService:UnionAsync(mainPart, {otherPart})
end)
if success and newParts then
for _, newPart in pairs(newParts) do
newPart.Parent = workspace
end
end

©2026 Roblox Corporation. Roblox 및 Roblox 로고, 'Powering Imagination'은 미국 및 기타 국가 내 당사의 등록 및 미등록 상표입니다.