
Flash submissions are emulated via Ruffle. Ruffle is currently in development and compatibility is not guaranteed. Click here for more info.
This massive work, the commission for
osmosis
At this time, barely managed to to push this in 10 MB limit.
===============================================
Mouse movement - open and close your mouth
Mouse click - swallow and bring back
1, 2 3 and 4 buttons - change the view

At this time, barely managed to to push this in 10 MB limit.
===============================================
Mouse movement - open and close your mouth
Mouse click - swallow and bring back
1, 2 3 and 4 buttons - change the view
Category Flash / Vore
Species Dragon (Other)
Gender Multiple characters
Size 1000 x 1000px
File Size 9.42 MB
Well, everything in general is simple. We need to do the number of frames equal to the number of pixels horizontally (or vertically). Then rounded coordinate of the mouse cursor can be used as a frame number. I use ActionScript 3.0
Var1 = mouseX-Var2 /9;
Var2 += Var1;
Var3 = Math.round(Var2 /9);
Mc.gotoAndStop(Var3);
All of this formula is only to make the movement smoother. Changing the number of splitter can achieve varying degrees of smoothness.
Var1 = mouseX-Var2 /9;
Var2 += Var1;
Var3 = Math.round(Var2 /9);
Mc.gotoAndStop(Var3);
All of this formula is only to make the movement smoother. Changing the number of splitter can achieve varying degrees of smoothness.
Comments