用户:
星星上的雪花查看:0 回复:5 评论:0 创建时间:2022-04-04T12:02:36
for(let x = 0; x < 255; x ++)
for(let z = 0; z < 255; z ++)
{
voxels.setVoxel(x,8,z,"snow");
if(x%3==0 || z%3==0)
voxels.setVoxel(x,8,z,"white_light");
if(x%2==0 && z%2==0)
voxels.setVoxel(x,8,z,"white");
};