マインクラフト MakeCode プログラミング。
チュートリアル、コードチェック編。
Leap of faith のコードチェックページです。
今回のコードはこちら。
player.onChat("lof", function () {
blocks.fill(
Block.Water,
positions.create(0, -1, 0),
positions.create(2, -3, 2),
FillOperation.Replace
)
blocks.fill(
Block.Stone,
positions.create(0, 128, 0),
positions.create(2, 128, 2),
FillOperation.Replace
)
player.teleport(positions.create(0, 129, 0))
gameplay.setGameMode(
GameMode.Survival,
mobs.target(TargetSelectorKind.LocalPlayer)
)
})
特に新しいものはないですね。
Spleefと同じようなコードしか使用していません。
コメント