赞 | 204 |
VIP | 13 |
好人卡 | 7 |
积分 | 122 |
经验 | 52899 |
最后登录 | 2021-6-29 |
在线时间 | 4435 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 12157
- 在线时间
- 4435 小时
- 注册时间
- 2014-4-11
- 帖子
- 5955
|
就拿这个来说
//=====================机械王座==============================================
if ($gameSwitches.value(42) == true){//条件变量
这里设置了条件,就是必须要满足42号开关开能执行
你的事件选择开启,才会有这里的内容
// this.drawIcon( 3, x + 350, y, 60, 'right');//图标显示
this.changeTextColor('rgba(0,255,0,255)');
this.drawText("机械王座:", x + 800, y +130, 100, 'right');//文字显示
this.changeTextColor('rgba(255,0,0,255)');
this.drawText( + $gameVariables.value(55)+"%净化率", x + 850, y +130, 200, 'right'); //变量显示
这里的变量显示。前面的+是多余的。这个55号变量。一开始是0,你的开启里面没有设置变量。所以他是0.
} else{
你的图片显示的是这里的部分。
也就是你的开关没有打开。
你没有选择开启。
this.changeTextColor('rgba(0,255,0,255)');
this.drawText("机械王座:", x + 800, y +130, 100, 'right');
// this.drawText("之塔:", x + 680, y -20, 100, 'right');
this.changeTextColor('rgba(255,0,0,255)');
this.drawText("关闭", x + 850, y +130, 100, 'right');
};
//============================================================================= |
|