SRCrazyプラグインにシンプルなタイマーを提供するプラグイン – SRCrazy_Timer.js

タイトル
Required for some SRCrazy plugins
作者名
ヘルプ
============================================================================
S_Rank_Crazy's Timer Plugin
============================================================================
This plugin provides a simple timer for other plugins.

This plugin should be placed above most other SRCrazy plugins in the Plugin
Manager. If you're using the MVCommons or PluginManagement plugins then
any dependency issues will be output as errors when the game loads.

All SRCrazy plugins are rename safe - you can rename the file and it'll still
work. All parameters and commands are case-safe (no need to worry about
case-sensitive input) unless specifically stated. This doesn't include
Comment Tags or file names/paths; they are still case sensitive.

MVCommons supported but not required for use.

============================================================================
USAGE

This plugin provides a Timer class used to delay the execution of function
calls, and optionally repeat them a set number of times (or indefinitely).
The class is found in the SRCrazy global namespace at:

SRCrazy.Classes.Timer

To use the class you'll need to first create a new Tween instance, add
the desired properties [to be tweened] and manage its state through
playback/update methods:

var timer = new SRCrazy.Classes.Timer(function() {
console.log("Hello");
}, 1, 5);
timer.start();

In the above exmaple, we create a timer that logs "Hello" 5 times, with
an interval of 1 second between each function call.

============================================================================
TERMS OF USE

Free for commercial and non-commercial use. No credit need be given, but
always appreciated.

============================================================================
COMPATIBILITY

Requires SRCrazy_Core plugin.

============================================================================
パラメータ
( なし )
ライセンス表記
No personal credit required, but always appreciated.
Free for personal and commercial use.

紹介ページ https://github.com/agent-bizzle/rmmv-plugins/blob/master/src/SRCrazy_Timer.js