随笔:让Minecraft失去焦点的时候不显示游戏设置菜单

随便写点,保持更新。

image.png

网友Neal告诉我们,他们在做microbit和Minecraft结合的尝试,已经有了很棒的成果,而我夏令营要教学生python和树莓派编程,所以想着顺便用Minecraft树莓派版本演示下python的神奇之处。

问题

尝试的过程中,在编写python代码的时候,我的世界总是显示游戏菜单,不能够实时的方便看到代码的效果,不开心。

image.png

image.png

寻求解决

群里问没有得到答案,搜索没有结果,因为检索词不合适。

解决

看到英国code dojo关于jupyter notebook以及Minecraft python tools的介绍时候,发下下面一段话:

It is a good idea to tell Minecraft not to go into Settings Menu when you switch to another window, for example this browser, using maybe alt+tab. To do so, go to your Minecraft installation folder and edit the options.txtfile. Find the pauseOnLostFocus value and replace true by false. Now your Minecraft game won't go into Settings Menu when you are writing your code here, and you can see everything in real time!

所以修改配置文件就可以了,把Minecraft安装目录中的options.txt文件中的pauseOnLostFocus配置项的值从true改成false就可以了。然后用alt+tab快捷键把焦点从Minecraft切换到idle。

看,这样就可以方便在运行代码的时候,查看运行结果了,用python控制Minecraft,jupyter notebook是良配。

你可能感兴趣的:(随笔:让Minecraft失去焦点的时候不显示游戏设置菜单)