如何创建"mesh"滴管?



有人能帮我把这个脚本变成一个"网格"滴?

wait(2)
workspace:WaitForChild("PartStorage")
while true do
    wait(1.5) -- How long in between drops
    local part = Instance.new("Part",workspace.PartStorage)
    part.BrickColor=script.Parent.Parent.Parent.DropColor.Value
    part.Material=script.Parent.Parent.Parent.MaterialValue.Value
    local cash = Instance.new("IntValue",part)
    cash.Name = "Cash"
    cash.Value = 5 -- How much the drops are worth
    part.CFrame = script.Parent.Drop.CFrame - Vector3.new(0,1.4,0)
    part.FormFactor = "Custom"
    part.Size=Vector3.new(1.2, 1.2, 1.2) -- Size of the drops
    part.TopSurface = "Smooth"
    part.BottomSurface = "Smooth"
    game.Debris:AddItem(part,20) -- How long until the drops expire
end

首先,有一个专门针对Roblox问题的网站:scriptinghelpers.org。我建议你以后用它。

既然那是不碍事的…

这不是很难添加一个网格到任何部分。你只需要知道你想要什么样的网格,你想要它的属性是什么,如果适用的话,你将使用的纹理。

因为网格是一个实例,我建议创建一个新的网格实例作为你的部分的孩子,并给它你想要的属性。这可以通过下面的代码轻松完成。

local mesh = Instance.new("SpecialMesh", part) -- Create the mesh as a child of 'part'
mesh.MeshType = Enum.MeshType.Sphere -- Sets the mesh's MeshType. If you'd like a mesh type other than a sphere, use the corrosponding MeshType Enum, http://wiki.roblox.com/index.php?title=API:Enum/MeshType
mesh.Scale = Vector3.new(1.2,1.2,1.2) -- this will set scale to 1.2 on all axis
mesh.MeshID = nil -- If you're using a FileMesh, replace nil with the mesh ID, otherwise, you can just remove this line

还有其他属性,如Offset, texturid和VertexColor,你可以在SpecialMesh实例的官方wiki页面上阅读更多信息。

相关内容

  • 没有找到相关文章

最新更新