Hi guys, a little problem. I'm using two windows:
Code:
style.say_who_window.left_padding = 40
style.say_who_window.top_padding = 0
style.say_who_window.bottom_padding = 5
style.say_window.background =("sys/nic.png")
style.say_window.yminimum = 109
style.say_who_window.background = ("sys/say_window.png")
I want my say_window visible during transmitions, so I have this:
Code:
define _windows_during_transitions = True
And I usually define my characters like this:
Code:
define t = Character ('Tom', color="A0522D", window_left_padding=23, window_right_padding=23, show_two_window=True, what_slow_cps=60)
And now, what's s a problem. During a transitions is say_window realy there, but say_who_window is not. I think it's becouse the show_two_window = True is inside the character and when transition runs, there is no character = no two windows.
But even with this assumption I dont know, how to change it. Any sugestion?