Faceless' misc imports - 16 Nov 15 - Umbra witch head set (1 Viewer)

zzaapp002

Staff
RM Moderator
Joined
Dec 10, 2011
Re: Faceless' misc costume imports - 28 May 13 - Grimey's swimsuit

Faceless!

Excellent!

And thank you!
 

TDream

Potential Patron
Joined
Jun 23, 2011
Re: Faceless' misc costume imports - 28 May 13 - Grimey's swimsuit

The breast slider makes a big difference 8) thanks for the swimsuit!


just one little thing:



you can see her nipples go through the swimsuit when you look closely.
 

Nigida

Potential Patron
Joined
Aug 9, 2011
Re: Faceless' misc costume imports - 28 May 13 - Grimey's swimsuit

Love the swimsuit, thanks!
 

Faceless

Content Creator
Joined
Jun 12, 2011
Re: Faceless' misc costume imports - 9 Jun 13 - Mileena costume

TDream said:
The breast slider makes a big difference 8) thanks for the swimsuit!


just one little thing:

*snip*

you can see her nipples go through the swimsuit when you look closely.
Huh. I've adjusted the tweening, so try it now.

EDIT: Fixed a masking issue for the minimum body size.

EDIT: Ported Grimey's other swimsuit. No color sliders this time, just breasts. As always, let me know if there are any issues.
 

Faceless

Content Creator
Joined
Jun 12, 2011
Re: Faceless' misc costume imports - 24 Jun 13 - Mileena costume update

Updated Mileena costume. Big thing is that the color slider for her top now controls the RGB for the entire costume.

Known issues:
- her knees and elbows will clip at the movement extremes; trying to fix it was taking too long
- still waiting for proper glove template, so her gloves are actually skin mods
- for some her forearms and hands don't layer right, so I put the joints on her hands instead; expect some clipping
- handjob and arms:back do not work
- possible minor clipping between top->back and top->chest if she starts hyperventilating with the largest breast settings

For those who care, applying this code to the top->back component tracks the breast slider setting.
Code:
import flash.display.MovieClip;
import flash.events.Event;

var clip:MovieClip = MovieClip(MovieClip(this.parent.getChildByName("chest")).getChildByName("rgbFill"));

addEventListener(Event.ENTER_FRAME, followBreastSlider);

function followBreastSlider(e:Event) {
	rgbFill.gotoAndStop(clip.currentFrame);
	band.gotoAndStop(clip.currentFrame);
}
"rgbFill" and "band" are instance names set with the Properties panel. This code was added to the 1st frame of the "Top Back" layer.

EDIT: consolidated the code that links the color sliders
 

Shade

Content Creator
Joined
Jun 19, 2011
Re: Faceless' misc costume imports - 24 Jun 13 - Mileena costume update

Nice little code! Have you tried hooking it up to the 'Gloves' (Forearm/Hand) Template and linking it to the Top RGB? May not work too well, since it really needs to be a Contrast/Saturation/Hue/Lightness scale, but it would be a start.

Hell, is there a way to read the Contrast/Saturation/Hue/Lightness of a Movie Clip and just automatically create an offset for it?
 

Faceless

Content Creator
Joined
Jun 12, 2011
Re: Faceless' misc costume imports - 24 Jun 13 - Mileena costume update

Funny you should mention the top slider, because I did just that. Copied from here:

Code:
import flash.events.Event;
import flash.display.MovieClip;

registerMod(bottom);
registerMod(top);

//...other initialization stuff

var top_back = top.back.rgbFill;

addEventListener(Event.ENTER_FRAME, followColorSlider);

function followColorSlider(e:Event) {
	bottom.backside.rgbFill.transform.colorTransform = top_back.transform.colorTransform;
	bottom.leftCalf.rgbFill.transform.colorTransform = top_back.transform.colorTransform;
	bottom.leftThigh.rgbFill.transform.colorTransform = top_back.transform.colorTransform;
	bottom.chest.rgbFill.transform.colorTransform = top_back.transform.colorTransform;
	bottom.rightThigh.rgbFill.transform.colorTransform = top_back.transform.colorTransform;
	bottom.rightCalf.rgbFill.transform.colorTransform = top_back.transform.colorTransform;
	bottom.back.rgbFill.transform.colorTransform = top_back.transform.colorTransform;
}
Obviously, the actual object names will be different depending on your naming scheme and what you're trying to tie together.

As far as HSLC go, I'm sure it's possible, but I also recall looking into it and deciding that it was too much of a pain for something I'm not getting paid to do. Something to do with the ratio kona used to translate the sliders into actual values and me being too lazy to figure what that was.
 

Faceless

Content Creator
Joined
Jun 12, 2011
Re: Faceless' misc costume imports - 5 Jul 13 - leotard

Uploaded a leotard costume. Yeah, I basically copied the swimsuits, but there are some minor differences.

Full color and breast slider support (color is controlled with the Top slider), and the costume is pantyhose compatible. No skirts, though.
 

TDream

Potential Patron
Joined
Jun 23, 2011
Re: Faceless' misc costume imports - 5 Jul 13 - leotard

Love the swimsuits! Nice work.
 

zzaapp002

Staff
RM Moderator
Joined
Dec 10, 2011
Re: Faceless' misc costume imports - 5 Jul 13 - leotard

I'm a little late to this party but thanks for the swimsuits and leotard!
 
M

majinpuar

Re: Faceless' misc costume imports - 5 Jul 13 - leotard

gotta ditto the post above me, great work!
 

Arsenal

Potential Patron
Joined
Jan 24, 2013
Re: Faceless' misc costume imports - 5 Jul 13 - leotard

Thanks for fulfilling my request for Mileena! I appreciate it.
 

Faceless

Content Creator
Joined
Jun 12, 2011
Re: Faceless' misc costume imports - 27 Jul 13 - Grimey's swimsuit update

Couple things. First, I updated Grimey's black swimsuit so that the whole thing is controlled with the shirt color slider. Then, I thought it'd look better with an actual outline, except that introduced clipping. So I went to redraw it, only for the stripes to start clipping as well. After fiddling around with AS3 and rotations, I managed to fix that at least. ::)

EDIT: Whoops, turns out that adding listeners directly to components causes null reference errors when unloading. I've uploaded a fixed version of swimsuit v2.
 

harvb

Potential Patron
Joined
Jul 28, 2013
Re: Faceless' misc costume imports - 27 Jul 13 - Grimey's swimsuit update

Faceless thanks for all the great swimsuit imports.

is it possible to port your shibari loader mod to vanilla with RGB slider?

thanks
 

Faceless

Content Creator
Joined
Jun 12, 2011
Re: Faceless' misc costume imports - 30 Jul 13 - rope shibari

harvb said:
Faceless thanks for all the great swimsuit imports.

is it possible to port your shibari loader mod to vanilla with RGB slider?

thanks
Ask, and ye shall receive. I also redrew the ropes to support breast sliders and different arm positions.
 

harvb

Potential Patron
Joined
Jul 28, 2013
Re: Faceless' misc costume imports - 30 Jul 13 - rope shibari

Faceless said:
Ask, and ye shall receive. I also redrew the ropes to support breast sliders and different arm positions.
It looks great, thank you.
 

drackgod

Potential Patron
Joined
Jan 18, 2013
Re: Faceless' misc costume imports - 30 Jul 13 - rope shibari

Pregnant for vanilla sdt would be fucking awesome after the squat ::)
 

Faceless

Content Creator
Joined
Jun 12, 2011
Re: Faceless' misc costume imports - 30 Jul 13 - rope shibari

That's nice, but I wasn't the one who did that.
 

Thor_Odinsson

Content Creator
Joined
Aug 23, 2013
Re: Faceless' misc costume imports - 30 Jul 13 - rope shibari

I cannot thank you enough for the Shibari. It's like a dream come true ;D
 

Users who are viewing this thread

Top


Are you 18 or older?

This website requires you to be 18 years of age or older. Please verify your age to view the content, or click Exit to leave.