马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?立即注册
×
本帖最后由 qq524298690 于 2022-4-5 02:01 编辑
[RenPy] 纯文本查看 复制代码 init python:
import renpy.store as store
import renpy.exports as renpy
class Item:
def __init__(self, NAME, HP, MP):
self.NAME = NAME
self.HP= HP
self.MP=MP
def Buffme(self,Item):
self.HP+= Item.HP
self.MP+=Item.MP
define wo = Item("我",100,100)
define redbuff = Item("红色BUFF",100,0)
define bluebuff = Item("蓝色BUFF",0,100)
screen 回血界面:
textbutton "上BUFF" action [Buffme("wo",redbuff)] pos (90, 445)
依样画葫芦模仿了一个帖子中的自定义人物,现在显示action里不支持我的Buffme,那我怎么样才能实现在screen界面里通过点击"上BUFF"这个按钮来完成Buffme这个函数的运行呢?
action后面的括号里该写什么才能运行这个Buffme呢?????
|