clearing all the layers ?
Posted: Sat Jan 22, 2011 6:12 am
In PS I use several layers for interface, battle messages, etc.
Now when I get into load/save screen I had some bugs, like this: I solved it by clearing all the layers one by one:
was wondering though if there was a better way to just clear all layers at once with one single command ? Or there's no solution to this except doing what I did ? thanks 
Now when I get into load/save screen I had some bugs, like this: I solved it by clearing all the layers one by one:
Code: Select all
python:
renpy.hide("Toolz")
if in_combat:
ui.layer("interface")
ui.clear()
ui.close()
ui.layer("battlemsg")
ui.clear()
ui.close()