Author Topic: Improvements  (Read 14807 times)

  • Administrator
  • Sr. Member
  • *****
  • Posts: 407
    • View Profile
Re: Improvements
« Reply #150 on: February 17, 2021, 02:36:53 pm »
I couldn't align player body segments to Crissy vag scene because original animation rotated them too much off alignment. Aligning segments manually in each of 1200 animation frames was unfeasible, but I found a way around. I ditched the player animation and replaced it with simple script moving and rotating each segment in respect to animated c0ck position. So the player is simply attached to the c0ck. :-)
For example:
player_body.onEnterFrame = function()
{
   this._x = _parent.player_cock._x - 20;
   this._y = _parent.player_cock._y;
   this._rotation = -0.4 * (this._x + 80);
}
It works great in Trong Flash Player. I have yet to test it in Adobe Player if script MovieClip methods override/disable SWF file timeline PlaceObject tags.

Animating objects through scripts opens much easier way to create a scene as only few segments, like c0ck and pu55y has to be animated manually, other segments animation could be automated through simple math model.

When doing that, I couldn't resist creating Carmen version of that scene. (screenshot attached)

[EDIT: File attachment removed]
« Last Edit: June 08, 2021, 09:06:04 am by Tabby »