- Jul 1, 2018
- 31
- 24
Hey ! To be simple, I'll add the screenshot :
I need a way to get the chick on the right behind the menu. I've tried everything (zorder, modal, init offset, changing screens orders), but nothing works.
Here's how I'm coding it :
- THE GIRL :
- THE MENU:
So, it's been 2 days I'm trying everything to resolve that, but nothing does.. Since my menu will be resized to be smaller, this will not be a great issue, but I want to prevent future girls/skins to have this issue.
I need a way to get the chick on the right behind the menu. I've tried everything (zorder, modal, init offset, changing screens orders), but nothing works.
Here's how I'm coding it :
- THE GIRL :
Code:
screen showSasha():
zorder 50
if showGirls==True:
if len(slot_list)>1:
if Sasha.page==currentGirlsPage:
imagebutton:
xalign Sasha.position
yalign 1.05
idle "girls/sasha/sasha_idle.png"
if showActionsSasha==False:
hover "girls/sasha/sasha_hover.png"
action [SetVariable("hudLocations",False),SetVariable("hudActions", False),SetVariable("showActionsSasha",True),SetVariable("whrMemory",You.where),SetVariable("You.where","Selected"),SetVariable("Sasha.where","Selected")]
Code:
screen actions():
zorder 100
if hudActions==True:
frame:
xpadding 10
ypadding 10
xalign 0.95
yalign 0.925
vbox:
style_prefix "actions"
text _("Actions") xalign 0.5
#if len(slot_list)>0:
# text "Names : [slot_list]" xalign 0.5
# text "[Bree.page] & [Bree.position]" xalign 0.5
if You.where=="My Office" and You.sleep>4 and You.hunger>0 and You.shower>2 and You.fun>2:
frame:
xsize 250
ypadding 5
xalign 0.5
ymargin 2
textbutton _("Work") action Jump("functionWork") xalign 0.5
if You.where=="My Bedroom" and You.sleep<10:
frame:
xsize 250
ypadding 5
xalign 0.5
ymargin 2
textbutton _("Sleep") action Jump("functionSleep") xalign 0.5
#[....etc....]