- Joined
- Mar 20, 2020
- Messages
- 10
- Reaction score
- 3
- First Language
- Viet Nam
- Primarily Uses
- RMMV
These two plugins are not compatible with each other.
I use HUD Maker to create a character face and using CCEX to change the appearance of the character, I get this error message:

Is there a way for them to be compatible? Or are there any plugins compatible with CCEX? I need help.
This is the code I found in HUD MAKER:
I use HUD Maker to create a character face and using CCEX to change the appearance of the character, I get this error message:

Is there a way for them to be compatible? Or are there any plugins compatible with CCEX? I need help.
This is the code I found in HUD MAKER:
_.checkForCC = function() {
if(Imported["SumRndmDde Character Creator EX"]) {
Sprite_HUDFace.prototype.refreshBitmap = function() {
this.bitmap.clear();
const color = _.convertHex(this["Background Color"], parseInt(this["Background Alpha"]));
this.bitmap.fillRect(0, 0, this.bitmap.width, this.bitmap.height, color);
if(this._actor.hasSetImage()) {
this.drawCustomFace(this._actor, 0, 0, this.bitmap.width, this.bitmap.height);
} else {
this.drawFace(this._actor.faceIndex(), parseInt(this["Width"]), parseInt(this["Height"]));
}
this.setupSnaps();
};
Sprite_HUDFace.prototype.drawCustomFace = function(actor, x, y, w, h) {
const width = Window_Base._faceWidth;
const height = Window_Base._faceHeight;
w = w || width;
h = h || height;
const bitmap = Sprite_HUDFace.prototype.getCustomFace.call(this, actor);
this.bitmap.blt(bitmap, 0, 0, width, height, x, y, w, h);
};
}
}
SRD.NotetagGetters.push(_.checkForCC);


