ds14048
Content Creator
- Joined
- Nov 5, 2012
I need some help with additional frames to the top back.
I have extended all layers out to 150 frames same as the upper chest top.
Only layers 1,2 and 3 of the top back have a tween to match up with the layers
on upper chest top.
@Faceless gave me what I am positive is great advice,
I'd recommend tweaking the tops to get rid of that joint that shows up for larger breast sizes. Give the back object the same number of frames as the chest object, and use the gotoAndStop() method to jump to the proper frame. That's how my Mileena costume, for instance, managed breast slider support.
Code:
var clip:MovieClip = (MovieClip)(this.parent).chest.rgbFill;
addEventListener(Event.ENTER_FRAME, followBreastSlider);
function followBreastSlider(e:Event) {
rgbFill.gotoAndStop(clip.currentFrame);
band.gotoAndStop(clip.currentFrame);
}
Of course, that was a vanilla mod, so the code went directly to the Top Back instance. With the loader, you can adapt the underboob slider proxy method instead for slightly better performance than creating a new event listener.
But I seem to learn best by having a working example.
Here is a link to my fla file lapis top redo.rar
I would appreciate some help with this .
I will definitely save this fla as my reference for future work
Thank You
I have extended all layers out to 150 frames same as the upper chest top.
Only layers 1,2 and 3 of the top back have a tween to match up with the layers
on upper chest top.
@Faceless gave me what I am positive is great advice,
I'd recommend tweaking the tops to get rid of that joint that shows up for larger breast sizes. Give the back object the same number of frames as the chest object, and use the gotoAndStop() method to jump to the proper frame. That's how my Mileena costume, for instance, managed breast slider support.
Code:
var clip:MovieClip = (MovieClip)(this.parent).chest.rgbFill;
addEventListener(Event.ENTER_FRAME, followBreastSlider);
function followBreastSlider(e:Event) {
rgbFill.gotoAndStop(clip.currentFrame);
band.gotoAndStop(clip.currentFrame);
}
Of course, that was a vanilla mod, so the code went directly to the Top Back instance. With the loader, you can adapt the underboob slider proxy method instead for slightly better performance than creating a new event listener.
But I seem to learn best by having a working example.
Here is a link to my fla file lapis top redo.rar
I would appreciate some help with this .
I will definitely save this fla as my reference for future work
Thank You