参考脚本:
[RenPy] 纯文本查看 复制代码 ##默认变量
default name = "我的名字"
#default talent = 0
default hp = 100
default mp = 50
##创建人物资料框screen
screen profile :
frame:
xysize(300,200) # 界面大小
text "[name]" : #显示name
align(0.5,0.01)
vbox:
align(0.2,0.3)# 显示位置,注意调整。
text "血量" #显示自定义文本
text "魔力"
vbox:
align(0.4,0.3)
text "[hp]"# 显示变量hp,注意区分大小写。
text "[mp]"
# 游戏在此开始。
label start:
# 此处显示各行对话。
e "下面显示 Ren'Py 做的RPG界面。"
show screen profile
e "看到 Ren'Py 做的RPG界面了吗?"
e "接着增加血量"
$ hp = hp +100
e "血量增加100,是200吗?"
e "下面再增加80魔力值"
$ mp = mp +80
e "是不是增加魔力值80,结果是多少?"
e "隐藏 RPG界面。"
hide screen profile
e "现没有 RPG界面啦。"
e "演示结束。"
# 此处为游戏结尾。
return
多研究关于screen的两篇文档(很重要、必学),你会发现“RPG状态栏"这些很好做
https://doc.renpy.cn/zh-CN/screens.html
https://www.renpy.cn/dc/screen_actions.html
|