요약
메서드
Class.PVInstance의 피벗을 가져옵니다.
모든 후손 PVInstance 과 함께 폼 PVInstances 으로 핵심이 이제 CFrame 에 위치 하도록 변환 합니다.
속성
메서드
GetPivot
이 함수는 PVInstance의 피벗을 가져옵니다. 이는 일반적으로 PVInstance:PivotTo() 를 사용하여 모델을 이동하는 데 사용됩니다.
Models 및 BaseParts 모두 PVInstances ("위치 속도 인스턴스")이므로 이 기능을 모두 가지고 있습니다.
반환
코드 샘플
-- This code should be placed in a LocalScript under StarterPlayerScripts
local Players = game:GetService("Players")
local ContextActionService = game:GetService("ContextActionService")
local player = Players.LocalPlayer
local function doTeleport(_actionName, inputState, _inputObject)
local character = player.Character
if character and character.Parent and inputState == Enum.UserInputState.Begin then
-- Move the character 10 studs forwards in the direction they're facing
local currentPivot = character:GetPivot()
character:PivotTo(currentPivot * CFrame.new(0, 0, -10))
end
end
ContextActionService:BindAction("Teleport", doTeleport, true, Enum.KeyCode.F)
PivotTo
모든 후손 PVInstance 와 함께 핵심 PVInstances 이 모두 피벗이 지금 지정된 CFrame 에 위치하도록 변환되었습니다. 이것은 스크립팅사용하여 2>Class.Model|Model2> 을
BaseParts 는 필요한 오프셋으로 변환된 CFrame 를 가지고 이동됩니다. Models 는 필요한 오프셋으로 변환된 0> Class.Model.WorldPivot0> 를 가지고 이동됩니다.
효율성을 위해 Object.Changed 이벤트는 Position 및 Orientation의 2>Class.BasePart|BaseParts2> 이동에 대해 실행되지 않습니다. 5>Class.BasePart|BaseParts5> 는 8>Datatype.CFrame</
Class.PVInstance:PivotTo()|PivotTo 를 호출하면 내림 부품과 모델의 오프셋이 캐시되어 다음에 호출하는 Models 에 부동 소수점 손실이 발생하지 않습니다.
Models 및 BaseParts 모두 PVInstances ("위치 속도 인스턴스")이므로 이 기능을 모두 가지고 있습니다.
매개 변수
Class.PVInstance를 이동한 후에 동일해야 하는 PVInstance입니다.
반환
코드 샘플
-- This code should be placed in a LocalScript under StarterPlayerScripts
local Players = game:GetService("Players")
local ContextActionService = game:GetService("ContextActionService")
local player = Players.LocalPlayer
local function doTeleport(_actionName, inputState, _inputObject)
local character = player.Character
if character and character.Parent and inputState == Enum.UserInputState.Begin then
-- Move the character 10 studs forwards in the direction they're facing
local currentPivot = character:GetPivot()
character:PivotTo(currentPivot * CFrame.new(0, 0, -10))
end
end
ContextActionService:BindAction("Teleport", doTeleport, true, Enum.KeyCode.F)