发布网友 发布时间:2022-04-23 07:33
共3个回答
热心网友 时间:2022-06-17 18:10
用记事本打开游戏目录\data\scripts\prefabs\tentacle_pillar.lua文件,在inst:AddComponent("inspectable")的下一行插入以下内容:
local function dig_up(inst, chopper)
inst:Remove()
end
inst:AddComponent("workable")
inst.components.workable:SetWorkAction(ACTIONS.DIG)
inst.components.workable:SetOnFinishCallback(dig_up)
inst.components.workable:SetWorkLeft(1)
就可以用铲子挖掉巨型触手,只能按空格挖,不能用鼠标挖……
热心网友 时间:2022-06-17 18:10
这就没办法了,只能换挡玩
热心网友 时间:2022-06-17 18:11
用指令就可以了