赞 | 28 |
VIP | 0 |
好人卡 | 0 |
积分 | 77 |
经验 | 0 |
最后登录 | 2024-11-18 |
在线时间 | 1437 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 7667
- 在线时间
- 1437 小时
- 注册时间
- 2018-12-16
- 帖子
- 2026
|
4楼
楼主 |
发表于 2021-10-10 22:32:29
|
只看该作者
我認真地看了那個插件...
弄了這個腳本...但是 角色並沒有閃紅色... 而且甚麼事情都沒有發生... >_<
- var _Game_CharacterBaseUpdate = Game_CharacterBase.prototype.update;
- Game_CharacterBase.prototype.update = function() {
- _Game_CharacterBaseUpdate.call(this);
- this.updateFlash();
- };
- Game_CharacterBase.prototype.startFlash = function(flashColor, flashDuration) {
- this._flashColor = flashColor;
- this._flashDuration = flashDuration;
- };
- Game_CharacterBase.prototype.clearFlash = function() {
- this._flashColor = [255,0,0,0];
- };
- Game_CharacterBase.prototype.isFlash = function() {
- return this._flashDuration > 0;
- };
- Game_CharacterBase.prototype.updateFlash = function() {
- if (this.isFlash()) {
- this._flashColor[3] = this._flashColor[3] * (this._flashDuration - 1) / this._flashDuration;
- this._flashDuration--;
- }
- };
复制代码 |
|