Lv.1
该账号已停用
在 请问如何在box3(电脑端)换成第一人视角? 中回复
代码:
world.onPlayerJoin(({ entity }) => {
entity.player.cameraMode = Box3CameraMode.FPS;
});2021-07-17T14:00:44 点赞:0
在 【box3】代码岛数据库---稿件征集! 中回复
名字:飞奔的车
类型:代码 .txt
图片:

代码:
world.querySelectorAll(".车").forEach(async (entity) => {
while (true) {
entity.position.z += 1.8
if (entity.position.z > 126) {
entity.position = new Box3Vector3(entity.position.x, 13, 0);
}
entity.onEntityContact(async ({ other }) => {
if (other.isPlayer) {
other.enableDamage = true
other.hurt(100)
world.addCollisionFilter('.车','player');
world.say(other.player.name+" 被车撞了")
other.player.forceRespawn()
world.removeCollisionFilter('.车','player');
return;
}
})
await sleep(50)
}
});2021-07-18T19:26:40 点赞:0
在 【严厉谴责】强烈谴责攻击本人服务器的某代码师! 中回复
根据《中华人民共和国刑法》第二百八十六条
违反国家规定
对计算机信息系统功能进行删除、修改、增加、干扰,造成计算机信息系统不能正常运行
后果特别严重的,处五年以上喵。
2021-07-20T13:59:00 点赞:1