大家好,我是misk。
这个东西可能很多人都知道了,不过我还是想分享给各位,内容大概是像安娜这样可以按E对话,只是变成了殭尸,模拟按E可以与殭尸对话。
影片如下:
製作原理大概就是:
1. 用推力方块的bug将人物方块推走。
2. 在该处生成不会动的殭尸(需lua)。
3. 大功告成!
Game.lua
function create_monster(onoff)
nbsp; nbsp; nbsp; nbsp;if onoff then
nbsp; nbsp; nbsp; nbsp; nbsp; nbsp; nbsp; nbsp;monster = Game.Monster:Create (Game.MONSTERTYPE.RUNNER0, x = 0, y = 0, z = 0 )
nbsp; nbsp; nbsp; nbsp; nbsp; nbsp; nbsp; nbsp;monster:Stop (true)
nbsp; nbsp; nbsp; nbsp;end
end