This commit is contained in:
lifestorm
2024-08-04 22:55:00 +03:00
parent 0e770b2b49
commit 94063e4369
7342 changed files with 1718932 additions and 14 deletions

View File

@@ -0,0 +1,56 @@
--[[
| This file was obtained through the combined efforts
| of Madbluntz & Plymouth Antiquarian Society.
|
| Credits: lifestorm, Gregory Wayne Rossel JR.,
| Maloy, DrPepper10 @ RIP, Atle!
|
| Visit for more: https://plymouth.thetwilightzone.ru/
--]]
local L = pace.LanguageString
pace.AddTool(L"spawn as props", function(part)
local data = pacx.PartToContraptionData(part)
net.Start("pac_to_contraption")
net.WriteTable(data)
net.SendToServer()
end)
function pacx.PartToContraptionData(part, tbl)
tbl = tbl or {}
if part.is_model_part then
local data = {}
local color = part:GetColor()
local alpha = part:GetAlpha()
if part.ProperColorRange then
data.clr = Color(color.r * 255, color.g * 255, color.b * 255, alpha * 255)
else
data.clr = Color(color.r, color.g, color.b, alpha * 255)
end
data.ang = part:GetOwner():GetAngles()
data.pos = part:GetOwner():GetPos()
data.mat = part:GetMaterial()
data.mdl = part:GetModel()
data.skn = part:GetSkin()
local size = part:GetSize()
data.scale = part:GetScale()*size
data.id = part.UniqueID
table.insert(tbl, data)
end
for key, part in ipairs(part:GetChildren()) do
if part.is_model_part then
pacx.PartToContraptionData(part, tbl)
end
end
return tbl
end