当サイトの運営者です。ゲーム制作とプラグイン開発が好きで、コミュニティに貢献したいと考えています。
RPGツクールMZでゲームを制作中です。
※プログラマ・エンジニアではありません。
タイマー制御 - CRTA_TimerManager.js

▼タイマー制御(tokineko様作) - CRTA_TimerManager.js
https://plugin.fungamemake.com/archives/12605
ツクール標準のカウントダウンタイマーの表示を変えたり、時間延長、減少、停止、再開が行えます。
ふりがな:たいまーせいぎょ
機能概要: ツクール標準のカウントダウンタイマーの表示を変えたり、時間延長、減少、停止、再開が行えます。
利用規約(ライセンス): MITライセンス
作者:tokineko
作者サイト:https://x.com/tokineco
解説ページ:https://studio.cretia.net/blog/666
ダウンロードページ:https://raw.githubusercontent.com/tokineco/RMMV_CRTAPlu…
ファイル名:CRTA_TimerManager.js
プラグインのヘルプ:
/*: * @plugindesc v1.1.0 タイマー関係の管理プラグイン * @author tokineco@cretia studio * * @param Font Size * @desc フォントサイズ * Default: 32 * @default 32 * * @param Width * @desc 横幅 * Default: 96 * @default 96 * * @param Height * @desc 縦幅 * Default: 48 * @default 48 * * @param Position X * @desc X位置 * Default: Graphics.width - this.bitmap.width * @default Graphics.width - this.bitmap.width * @param Position Y * @desc Y位置 * Default: 0 * @default 0 * * @help * 概要: * ツクール標準のカウントダウンタイマーの表示を変えたり、いろいろな操作を行うプラグインです。 * 時間延長、減少、停止、再開が行えます。 * * 詳細な使用方法は下記をご覧ください。 * http://studio.cretia.net/blog/666 * * プラグインコマンド: * CRTA_TimerManager add 10 # タイマーを指定秒数増加させる * CRTA_TimerManager sub 10 # タイマーを指定秒数減少させる * CRTA_TimerManager pause # タイマーを一時停止させる * CRTA_TimerManager resume # タイマーを再開させる * * ※このプラグインでは、以下を書き換えていますので、本体アップデートや競合に注意してください。 * Sprite_Timer.prototype.createBitmap * Sprite_Timer.prototype.updatePosition * Game_Timer.prototype.start * Game_Timer.prototype.update * * ライセンス: * このプラグインは以下のライセンスのもと、使用することができます。 * Copyright (c) 2016 tokineco * Released under the MIT license * https://github.com/tokineco/RMMV_CRTAPlugins/blob/master/LICENSE */