本帖最后由 怀念丶落樱 于 2021-6-3 18:35 编辑
我败了[RenPy] 纯文本查看 复制代码 #script.rpy文件中
define imgPath = ""
label start:
image iraImg:
scene "[imgPath]"
call screen a
return
#myscript.rpy文件中
screen a:
fixed:
xcenter 0.35
ycenter 0.35
xsize 640
ysize 360
textbutton "男":
text_size 20 text_outlines [(absolute(2),"#000",absolute(0),absolute(0))]
text_color "ffcce0"
text_hover_color "#ffffff"
action SetVariable ("imgPath",images/heart.png)
fixed:
xcenter 0.5
ycenter 0.35
xsize 640
ysize 360
textbutton "女":
text_size 20 text_outlines [(absolute(2),"#000",absolute(0),absolute(0))]
text_color "ffcce0"
text_hover_color "#ffffff"
action SetVariable ("imgPath",images/heart1.png)
|