- Jun 2, 2018
- 543
- 686
I have an animated bar that works perfectly until I hover over something or trigger some other variable that has no relation to the bar itself...
Then the bar flickers and jumps around like a hungry poodle. It looks ridiculous. I need Help.
Friends,
It's been just shy of 48 hours and I can't find a solution. I've tried pauses, manipulating static value bars, while loops, and typing profanity right into the code. Please help, or even tell me that it's impossible so I can move on with my life. Thanks all.
Then the bar flickers and jumps around like a hungry poodle. It looks ridiculous. I need Help.
Python:
label test_room:
call screen main_screen()
screen main_screen():
use random_screen
use random_screen
use timer_bar #The bar in question is on this screen among other screens
use random_screen
use random_screen
screen timer_bar():
$ timeout = renpy.random.randint(2,5)
timer timeout action Jump("test_room")
if bar_show and persistent.timed_choices:
vbar:
xalign 1.0
yalign .5
xsize 25
value AnimatedValue(old_value=0.0, value=1.0, range=1.0, delay=timeout)
It's been just shy of 48 hours and I can't find a solution. I've tried pauses, manipulating static value bars, while loops, and typing profanity right into the code. Please help, or even tell me that it's impossible so I can move on with my life. Thanks all.