Last active
October 27, 2021 07:37
-
-
Save triacontane/c99ed487fd0fbe59e7437ae6d1fce2c5 to your computer and use it in GitHub Desktop.
スクリプトからのプラグインコマンド呼び出し例
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const cpdArgs = { | |
character : '0', | |
valueVariable : String($gameVariables._data[1]), | |
setting: '{"reverse":"false","type":"HP","critical":"false"}' | |
}; | |
PluginManager.callCommand( | |
this, 'CharacterPopupDamage' , 'POPUP_DAMAGE', cpdArgs | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
イベントコマンド『スクリプト』などから呼びます。