File size: 523 Bytes
0712d5f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | -- src/ReplicatedStorage/Shared/DraggingConfig.lua
local DraggingConfig = {
MaxGrabDistance = 15, -- How far away the player can grab an object
HoldDistance = 6, -- The distance at which the object is held in front of the player
-- AlignPosition Properties
AlignPositionMaxForce = 20000,
AlignPositionResponsiveness = 15,
-- AlignOrientation Properties
AlignOrientationMaxTorque = 20000,
AlignOrientationResponsiveness = 20,
}
return DraggingConfig
|