赞 | 4 |
VIP | 17 |
好人卡 | 62 |
积分 | 14 |
经验 | 52410 |
最后登录 | 2023-8-24 |
在线时间 | 962 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 1409
- 在线时间
- 962 小时
- 注册时间
- 2012-4-30
- 帖子
- 1475
|
多拉菌不要在vx区推荐va这东西。。。vx用的人越来越少了。。。要是再被变成va党。。vx就彻底没人用了。。
脚本什么的。。这个你可以先在Window_Status里定义一个- def draw_actor_text(actor, x, y)
复制代码 然后一段- case actor.id
- when 1
- text = "当一号人物时的介绍"
- when 2
- text = "当二号人物时的介绍"
- .......
- end
复制代码 这样就取得了人物的介绍只需要在把它描绘出来用draw_text来..
self.contents.draw_text(x, y , 180, WLH, text)#这里的text就是上面的介绍
xy就是上面的参数就是被调用时的xy
这个方法大体就这样的..- def draw_actor_text(actor, x, y)
- case actor.id
- when 1
- text = "当一号人物时的介绍"
- when 2
- text = "当二号人物时的介绍"
- .......
- end
- self.contents.draw_text(x, y , 180, WLH, text)#这里的text就是上面的介绍
- end
复制代码 最后在refresh里加def draw_actor_text(@actor, x, y)#xy随便写..@actor不能改...基本上就这样.. |
评分
-
查看全部评分
|