Ren'Py show only image

Black Ram oss

Black Ram
Game Developer
May 10, 2018
582
1,564
usually adding a "pause" after a "show" statement will pervent the say window to show if it's hidden, to hide the window use "window hide" before the "show image"
sorry if I answer you late, but it is not good in all cases, for example:

Code:
"Hi"
show ...
pause
the "frame" of the text remains
 

Paz

Active Member
Aug 9, 2016
925
1,522
Setting Preference("show empty window", "hide") as per the might solve that corner case for you.
 
  • Like
Reactions: BlueDick

Paz

Active Member
Aug 9, 2016
925
1,522
I don't think it answers my question, I wanted: after a series of conversations show the current image
I was referring to the issue you seemed to have with window hide, but I saw afterwards that you didn't include it in your example.
Code:
"Hi"
window hide
show ...
pause
should work just fine.
 
  • Like
Reactions: BlueDick