当玩家站在 Roblox 中的方块上时会触发什么事件?

What event fires when a player stands on a block in Roblox?

我想在玩家站立时更改零件的颜色,但我可以将脚本放在工作区中并从事件中识别零件,而不是将脚本放在零件中,例如 Humanoid touched 或其他?

原因是我有 100 个部分需要对触摸事件做出反应,所以我不想在每个部分中放置相同的脚本。

伪代码可能是

播放器触摸部分事件已触发 从事件中识别部件并更改部件的颜色

谢谢

正如 M. Ziegenhorn 所写,你可以将脚本放在角色中或直接放在脚中。这将是实现这一目标的 "easiest" 方式。

但是,您也可以轻松地将函数连接到每个部分。 在下面的代码中,我们检查了名为 'TouchParts' 的工作区中的模型,该模型(假设)包含您想要将 touch-function 绑定到的部分。

function Touched(self, Hit)
  if Hit and Hit.Parent and Hit.Parent:FindFirstChildOfClass'Humanoid' then
    -- We know it's a character (or NPC) since it contains a Humanoid
    -- Do your stuff here
    print(Hit.Parent.Name, 'hit the brick', self:GetFullName())
    self.BrickColor = BrickColor.new('Bright red')
  end
end

for _, object in pairs(workspace.TouchParts:GetChildren()) do
   if object:IsA'BasePart' then
     object.Touched:connect(function(Hit)
       Touched(object, Hit)
      end)
   end
end

这样做意味着您的角色中任何接触该部分的东西都会触发 Touched-event,因此您必须添加一个检查以查看接触的部分是否是一条腿.

将函数绑定到每个部分而不是腿的优点在于,仅当您实际触摸一个预期的部分时才会调用该函数,而不是您触摸的任何东西。但是,随着您连接的部件数量的增加,将触发并存储在内存中的事件数量也会增加。在您使用的规模上可能不会引人注意,但值得牢记。

我已经有一段时间没有在 roblox 上编写代码了,所以请原谅我犯的任何错误。

local parent = workspace.Model --This is the model that contains all of that parts you are checking.
local deb = 5 --Simple debounce variable, it's the minimum wait time in between event fires, in seconds.
local col = BrickColor.new("White") --The color you want to change them to once touched.

for _,object in next,parent:GetChildren() do --Set up an event for each object
    if object:IsA("BasePart") then --Make sure it's some sort of part
        spawn(function() --Create a new thread for the event so that it can run separately and not yield our code
            while true do --Create infinite loop so event can fire multiple times
                local hit = object.Touched:wait() --Waits for the object to be touched and assigns what touched it to the variable hit
                local player = game.Players:GetPlayerFromCharacter(hit.Parent) --Either finds the player, or nil
                if player then --If it was indeed a player that touched it
                    object.BrickColor = BrickColor.new(col) --Change color; note this is also where any other code that should run on touch should go.
                end
                wait(deb) --Wait for debounce
            end
        end)
    end
end

这可能是最有效的方法之一。

当玩家站在一个方块上时,值 "FloorMaterial"(在 Humanoid 中)将告诉您 material 用户所站的位置,但如果用户没有站立在任何情况下,这个值都将为零。

另一种有效的方法是使用光线。您需要从 HumanoidRootPart 创建射线。

示例:

    IsOnGround=function()
    local b=false;
    local range=6;
    local char=game:service("Players").LocalPlayer.Character;
    local root=char:WaitForChild("HumanoidRootPart",1);
    if root then
    local ray=Ray.new(root.CFrame.p,((root.CFrame*CFrame.new(0,-range,0)).p).unit*range);
    local ignore={char};
    local hit,pos=workspace:FindPartOnRayWithIgnoreList(ray,ignore,false,false);
    pcall(function()
    if hit then
    b=true;
    end
    end)
    else
    print("root not found");
    end
    return b;
    end

这将从 HumanoidRootPart 投射一条光线,朝向地面应有的方向,距离为 6 个螺柱。

遗憾的是,据我所知,此方法对 R15 字符不是很有效。