用户:
一个STUB用户_6923702查看:10 回复:14 评论:10 创建时间:2020-06-16T12:51:29
(没有按下除了w的任何键)
我叫zztworld.onVoxelContact(({entity, voxel}) => { const stone = voxels.id('stone') if (voxel===stone){ entity.velocity.y = 2; setTimeout(function(){ entity.velocity.y = 3; }, 1500); } }) 然后我作死把TimeOut换成Interval点赞0
评论
world.onVoxelContact(({entity, voxel}) => { const stone = voxels.id('stone') if (voxel===stone){ entity.velocity.y = 2; setTimeout(function(){ entity.velocity.y = 3; }, 1500); } })
点赞0
评论
(async function(){
while(1){
world.querySelectorAll('player')[0].velocity.y = 3;
await sleep(10)
}
})();
点赞0
评论