Helloo, I tried to use your code and I get an error:
'config' is not a keyword argument or valid child for a screen statement.
config->.overlay_screens.append("minimap")
I don't know if I did something wrong.
Hi! It looks like you put
config.overlay_screens.append("minimap")
inside a screen's code. It should be within a init python block instead. Anywhere in your project, you can put
init python:
And it should work.
Ty! It worked.