Currently coding the next version of my VN and need a bit of assistance in tweaking my code to get following section to work.
The above is actually an animation with a screen on the upper left. Currently it functions and I am able to switch between various animations via the buttons, however there are a couple of significant issues to overcome.
1) I can't get the screen to stay on screen without the with Pause (20) command.
2) If you click anywhere but on the screen buttons the screen disappears.
I'm hoping it's just a minor tweak to my code as listed below.
Label:
Screen:
The above is actually an animation with a screen on the upper left. Currently it functions and I am able to switch between various animations via the buttons, however there are a couple of significant issues to overcome.
1) I can't get the screen to stay on screen without the with Pause (20) command.
2) If you click anywhere but on the screen buttons the screen disappears.
I'm hoping it's just a minor tweak to my code as listed below.
Label:
Python:
label lia_lewd:
scene black
while lewd_pos != "exit":
if lewd_pos == "kiss":
play movie "pcrclak1dy.webm" loop
show movie
$ lewd_excite += 10
show screen lia_lewd_screen
with Pause (20)
elif lewd_pos == "grind":
play movie "pcrclag3o.webm" loop
show movie
$ lewd_excite += 10
show screen lia_lewd_screen
with Pause (20)
else:
""
stop movie
hide screen lia_lewd_screen
$ lewd_pos = "kiss"
$ lewd_excite = 0
jump room_cap
Python:
screen lia_lewd_screen:
zorder 200
hbox:
xpos 0.02
ypos 0.05
xanchor 0.0
yanchor 0.0
spacing 10
vbar:
value AnimatedValue(lewd_excite, 100, 1.0)
ymaximum 210
xsize 10
vbox:
image "l_lia.webp"
vbox:
spacing 5
imagebutton auto "i_exit_%s.png" action [SetVariable("lewd_pos", "exit"), Jump("lia_lewd")]
imagebutton auto "i_kiss_%s.png" action [SetVariable("lewd_pos", "kiss"), Jump("lia_lewd")]
imagebutton auto "i_grind_%s.png" action [SetVariable("lewd_pos", "grind"), Jump("lia_lewd")]