|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?立即注册
×
本帖最后由 怀念丶落樱 于 2021-5-7 22:06 编辑
define x = 0
screen a:
frame:
xcenter 0.5
ycenter 0.5
xsize 640
ysize 360
vbox:
add "images/Untitled.png" xcenter 0.5
textbutton "加1":
text_size 40 text_outlines [(absolute(2),"#000",absolute(0),absolute(0))]
text_color "ffcce0"
text_hover_color "#ffffff"
action SetVariable("x",1)
textbutton "加2":
text_size 40 text_outlines [(absolute(2),"#000",absolute(0),absolute(0))]
text_color "ffcce0"
text_hover_color "#ffffff"
action SetVariable("x",2)
text"[x]"size 40 outlines [(absolute(2),"#000",absolute(0),absolute(0))] color "ffcce0" hover_color "#ffffff"
|
|