Add flag to flip speech bubble

This commit is contained in:
Essem 2022-06-22 21:55:09 -05:00
parent b298656515
commit bb966df085
No known key found for this signature in database
GPG key ID: 7D497397CC3A2A8C
2 changed files with 12 additions and 1 deletions

View file

@ -7,7 +7,8 @@ class SpeechBubbleCommand extends ImageCommand {
gravity: "north",
resize: true,
yscale: 0.2,
alpha: this.specialArgs.alpha
alpha: this.specialArgs.alpha,
flip: this.specialArgs.flip
};
}
@ -17,6 +18,10 @@ class SpeechBubbleCommand extends ImageCommand {
name: "alpha",
description: "Make the top of the speech bubble transparent",
type: 5
}, {
name: "flip",
description: "Flips the speech bubble",
type: 5
});
return this;
}