It's pretty obvious to me what you were saying in regards to her height. I suspect some readers were too busy getting off to actually read the dialogue.
Also the mistress is standing straight and probably in the heels she was wearing earlier while the slave girl's knees are bent (in the second frame at least). It's really not that difficult to understand.
Slave girl has become significantly shorter from the transformation. Her change in height is now more apparent to her because she has someone to compare to. I don't really know how to make it clearer in the comic without "oh now i am teh little girl" type narration.
Thanks! I was looking for something like that so I could improve the timing of sub animations. I have updated the code so now the blinking in panel 3 happens on its own timescale. I also added support for multiple sub animations and opacity changes, which I used to add random blushing to panel 3.
window.requestAnimationFrame() can play more nicely with others (e.g. maybe stopping when the window doesn't have focus, delaying when the CPU is overloaded and maybe other niceties that vary by browser) than setTimeout on modern browsers, at the cost of having to track time yourself.
function init() { ... for( ...) { var frameState = {idx: i, start: null, nextFrame: null} window.requestAnimationFrame(processOverlay.bind(frameState)) } }
function processOverlay(timestamp) { var idx = this.idx; if (!this.start) { this.start = timestamp; this.nextFrame = timestamp }
if (this.nextFrame > timestamp) { // Nothing to do this time. window.requestAnimationFrame(processOverlay.bind(this)); return }
I'm loving the series so far! Simply stunning! I specifically adore the use of the drawings here. They work so well that it was as though you were intending them for this very use! Bravo!
Probably