トリアコンタン様のMV版カスタムメニュー作成プラグインについてですが
久しぶりに最新バージョンにしたら以前と挙動が異なる点についてお聞きします。
一覧取得スクリプトがtrueだと項目描画スクリプトの内容でウィンドウが表示されていましたが
trueにしてもウィンドウそのものが表示されなくなってしまいました。
以前は項目描画スクリプトに
コード: 全て選択
this.drawGauge(r.x, r.y, r.width / 2, $gameVariables.value(32)/$gameVariables.value(33), this.textColor(20), this.textColor(21)); // ゲージ
this.drawText($gameVariables.value(34)+':', r.x, r.y, 60, 'left');
this.changeTextColor($gameVariables.value(32) === 0 ? this.textColor(10) : this.textColor(0)); // テキストカラー変更(drawTextでのみ有効)
this.drawText($gameVariables.value(32), r.x + 60, r.y, 40, 'right');
this.changeTextColor(this.textColor(0)); // テキストカラー変更(drawTextでのみ有効)
this.drawGauge(r.x + 105, r.y, r.width / 2, $gameVariables.value(67)/$gameVariables.value(68), this.textColor(22), this.textColor(23)); // ゲージ
this.drawText($gameVariables.value(69)+':', r.x + 105, r.y, 60, 'left');
this.changeTextColor($gameVariables.value(67) === 0 ? this.textColor(10) : this.textColor(0)); // テキストカラー変更(drawTextでのみ有効)
this.drawText($gameVariables.value(67), r.x + 105 + 60, r.y, 40, 'right');
このような感じにウィンドウの中にゲージが2つあってそれぞれ値を表示していました。
一覧取得スクリプトがtrueの代わりになにか別の値を入れないといけなくなってしまったのでしょうか?
小さなウィンドウ(x:20 y:20 width:250 列1 行1)の中にゲージ2つとゲージの数値を入れるのが目的です。
やり方を教えてもらえると助かります。