
Lv.1
屑
在 【我在起床就因打赢了机器人五号被他封号了?()】有图有证据(别说我编故事() 中回复
想想为什么他就封你不封别人?(暴论
要是是我的话他就不会封啊(暴论
2022-07-07T19:20:39 点赞:2
在 岛喵ro版用gui获取玩家游戏屏幕分辨率代码 中回复
实际上好像要乘上1.25才是真实的游戏屏幕大小()
world.onPlayerJoin(async ({ entity }) => {
await gui.init(entity, {
"": {
display: true,
data: `
<dialog percentWidth="100" percentHeight="100" id="fullscreen">
</dialog>
`
}
});
entity.player.screenWidth = await gui.getAttribute(entity, "#fullscreen", "width") * 1.25;
entity.player.screenHeight = await gui.getAttribute(entity, "#fullscreen", "height") * 1.25;
console.log(entity.player.name + '的游戏屏幕大小为' + entity.player.screenWidth + '*' + entity.player.screenHeight);
gui.remove(entity, "#fullscreen");
});

2023-07-19T14:52:22 点赞:1