Dante's Lovely Ladies - Official Goodbye (1 Viewer)

Arsenal

Potential Patron
Joined
Jan 24, 2013
Re: Dante's Lovely Ladies (03/2/14 - Creeper-Minecraft, Serra Angel - Mongo Bongo)

On the subject, is it possible for you to make the bunny suit RGB shiftable?
 

BuckWild

Modder
Streamer
Joined
Feb 3, 2013
Re: Dante's Lovely Ladies (03/2/14 - Creeper-Minecraft, Serra Angel - Mongo Bongo)

Arsenal said:
On the subject, is it possible for you to make the bunny suit RGB shiftable?

It's possible, yes.

Her Costumes are all hue-shiftable, aside from those pieces that use the body template as was mentioned. You might want to rephrase the question if you are requesting something to be made. Be aware, though, that Dante said he'll not take any more requests until he cuts down his to-do list enough so it isn't so long. Though he might do something to the current costumes if it's a small task.

Personally, though, I want Dante to cut down his list as soon as he's able. Can't have his requests stay undone even after a year. Not that I have any pending on his Vanilla mod list, but even I want some of those requests to be done.
 

Arsenal

Potential Patron
Joined
Jan 24, 2013
Re: Dante's Lovely Ladies (03/2/14 - Creeper-Minecraft, Serra Angel - Mongo Bongo)

BuckWild said:
Arsenal said:
On the subject, is it possible for you to make the bunny suit RGB shiftable?

It's possible, yes.

Her Costumes are all hue-shiftable, aside from those pieces that use the body template as was mentioned. You might want to rephrase the question if you are requesting something to be made. Be aware, though, that Dante said he'll not take any more requests until he cuts down his to-do list enough so it isn't so long. Though he might do something to the current costumes if it's a small task.

Personally, though, I want Dante to cut down his list as soon as he's able. Can't have his requests stay undone even after a year. Not that I have any pending on his Vanilla mod list, but even I want some of those requests to be done.

Cool dude. I was just asking to see if he was interested. Maybe you're close to Dante, but I always figured that he mainly doing this for fun, and that he'd work on whatever strikes his fancy. I have a few requests that are over a year old and could care less if he takes another 2 years to make them, if even at all.
 

dantethedarkprince

Content Creator
Joined
Jun 15, 2012
Re: Dante's Lovely Ladies (03/2/14 - Creeper-Minecraft, Serra Angel - Mongo Bongo)

Arsenal said:
On the subject, is it possible for you to make the bunny suit RGB shiftable?

Possible if I could figure out how. I've been trying to get the standalone dress to do it for the "more clothing" mod

BuckWild said:
Though he might do something to the current costumes if it's a small task.

Yep, that's never a problem 8)

Personally, though, I want Dante to cut down his list as soon as he's able. Can't have his requests stay undone even after a year. Not that I have any pending on his Vanilla mod list, but even I want some of those requests to be done.

Made my day ;D

Arsenal said:
Maybe you're close to Dante, but I always figured that he mainly doing this for fun, and that he'd work on whatever strikes his fancy.

I'm just a nice guy who has an addiction to drawing boobies and too much time on his hands ;D. As far as I'm concerned, I consider you all friends... unless you're a total douche, lol. And yeah I do make these for fun, and I'm loving that my detail and speed is getting better and better with every new mod.
 

BuckWild

Modder
Streamer
Joined
Feb 3, 2013
Re: Dante's Lovely Ladies (03/2/14 - Creeper-Minecraft, Serra Angel - Mongo Bongo)

I coulda sworn you learned how to make clothing RGB shiftable sometime late 2013. Didn't someone explain how to do it in your thread a while back?
 

Faceless

Content Creator
Joined
Jun 12, 2011
Re: Dante's Lovely Ladies (03/2/14 - Creeper-Minecraft, Serra Angel - Mongo Bongo)

Faceless said:
Mike said:
This would require the loader because the vanilla template doesn't have a hand costume layer. Hue shifting the hands would mean hue shifting the whole body at the same time.

Here's what I have so far, not sure that's what you're looking for since there aren't any references.
Strictly speaking, that's not true. My Mileena costume, for instance, ties the gloves to the shirt RGB sliders, and ignores the skin HSL sliders. If you care, here's how I managed it:

code goes in the main settings frame (where you make your registerMod() calls etc)
Code:
//top = shirt mod
//bottom = pants mod
//arms = body mod
//collar = collar mod

import flash.events.Event;
import flash.display.MovieClip;
import flash.filters.ColorMatrixFilter;

var top_back = top.back.rgbFill;

//equivalent to default HSL slider values
var filter = new ColorMatrixFilter(new Array(
		0, 1, 0, 0, 0,
		1, 0, 0, 0, 0,
		0, 0, 1, 0, 0,
		0, 0, 0, 1, 0)
);

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;

	collar.rgbFill.transform.colorTransform = top_back.transform.colorTransform;
	
	arms.leftUpperArm.rgbFill.transform.colorTransform = top_back.transform.colorTransform;
	arms.leftForearm.rgbFill.transform.colorTransform = top_back.transform.colorTransform;
	arms.leftHand.rgbFill.transform.colorTransform = top_back.transform.colorTransform;
	arms.behindBackHands.rgbFill.transform.colorTransform = top_back.transform.colorTransform;
	arms.rightUpperArm.rgbFill.transform.colorTransform = top_back.transform.colorTransform;
	arms.rightForearm.rgbFill.transform.colorTransform = top_back.transform.colorTransform;
	arms.rightHand.rgbFill.transform.colorTransform = top_back.transform.colorTransform;
	
	arms.leftUpperArm.filters = [filter];
	arms.leftForearm.filters = [filter];
	arms.leftHand.filters = [filter];
	arms.behindBackHands.filters = [filter];
	arms.rightUpperArm.filters = [filter];
	arms.rightForearm.filters = [filter];
	arms.rightHand.filters = [filter];
}

Of course, the vanilla template doesn't support handjob mode, so it probably is better to go with the loader.
Note that the ColorMatrix stuff doesn't actually work. Everything else is good, though.
 

zzaapp002

Staff
RM Moderator
Joined
Dec 10, 2011
Re: Dante's Lovely Ladies (03/2/14 - Creeper-Minecraft, Serra Angel - Mongo Bongo)

Dante - any chance you have non-hard-body versions of these?

Wonder Woman - Justice League War

American Dad - Morgan - Dragon Scuffle
 
G

glub

Re: Dante's Lovely Ladies (03/2/14 - Creeper-Minecraft, Serra Angel - Mongo Bongo)

Edi - Mass Effect (10)
Batgirl - DC Superheros (7)
Black Canary - DC Superheros (7)
Anna - Frozen (7)
Elsa - Frozen (7)
Black Widow - Marvel (6)
Mesh Top (3)
 

RaiseYourDongers

Potential Patron
Joined
Nov 16, 2013
Re: Dante's Lovely Ladies (03/2/14 - Creeper-Minecraft, Serra Angel - Mongo Bongo)

Shyvana - League Of Legends

My votes

Is it the original or the Ironsclale one?
 

ZakSmith

Potential Patron
Joined
May 15, 2012
Re: Dante's Lovely Ladies (03/2/14 - Creeper-Minecraft, Serra Angel - Mongo Bongo)

Yo Dante, what're you working on now? I'm super curious.
 

dantethedarkprince

Content Creator
Joined
Jun 15, 2012
Re: Dante's Lovely Ladies (03/2/14 - Creeper-Minecraft, Serra Angel - Mongo Bongo)

Miu from Aesthetica of a Rouge Hero. kjon's reward for the quad-centennial karma point ;D. And I just got done painting the fender of my Caddy.
 

chinobi

Potential Patron
Joined
Oct 28, 2013
Re: Dante's Lovely Ladies (03/2/14 - Creeper-Minecraft, Serra Angel - Mongo Bongo)

Hi, mmm could i ask you for a request? it you have time of course, emm will you could make ash crimson from king of fighters? thanks
 

dantethedarkprince

Content Creator
Joined
Jun 15, 2012
Re: Dante's Lovely Ladies (03/9/14 - Elisabeth-King of Fighters, Miu Ousawa)

UPDATE: Elisabeth - King of Fighters, Miu Ousawa - Aesthetica of a Rouge Hero - Combat Outfit, Gym Outfit & Dynamic Hair.

Votes noted 8)

UPDATE 2: Animated Cop Car
 

HonorSquid

Potential Patron
Joined
Mar 3, 2014
Re: Dante's Lovely Ladies (03/9/14 - Elisabeth-King of Fighters, Miu Ousawa)

Keep up the excellent work, Dante; I am thoroughly impressed!
Here are my votes:

Ysera - World of Warcraft ( 8 )
Sylvanas Windrunner (Banshee Queen) - World of Warcraft (7)
High Inquisitor Whitemane - World of Warcraft (with and without the hat) (6)
Shiro - Deadman Wonderland (3)
Saskia - The Witcher (3)
Say'ri - Fire emblem Awakening (2)
Miia the Lamia - Monster Musume No Iru Nichijou (2)
Emi Yusa - The Devil Is A Part-Timer (R)
Cersei Lanister - Game of Thrones (R)
 

sofed

Potential Patron
Joined
Aug 6, 2013
Re: Dante's Lovely Ladies (03/9/14 - Elisabeth-King of Fighters, Miu Ousawa)

Dante said:
UPDATE: Elisabeth - King of Fighters, Miu Ousawa - Aesthetica of a Rouge Hero - Combat Outfit, Gym Outfit & Dynamic Hair.

Votes noted 8)

UPDATE 2: Animated Cop Car

Having you work on the outfit of my favorite KOF character was a very nice surprise! Good job, man :)
 

dantethedarkprince

Content Creator
Joined
Jun 15, 2012
Re: Dante's Lovely Ladies (03/9/14 - Elisabeth-King of Fighters, Miu Ousawa)

@200Points: Votes noted 8)

@jahzeel123 & sofed: I'll accept Karma, Cupcakes aor Porn as payment ;D
 
J

Jiruinc

Re: Dante's Lovely Ladies (03/9/14 - Elisabeth-King of Fighters, Miu Ousawa)

ahh can i vote for elsa and anna?

elsa (8)
anna (8)

both are great!! would love a detailed one of these two and their dresses etc
 

chinobi

Potential Patron
Joined
Oct 28, 2013
Re: Dante's Lovely Ladies (03/9/14 - Elisabeth-King of Fighters, Miu Ousawa)

and don't forget of chae lim:
-http://www.sdtmods.com/index.php?topic=5207.0
 

zzaapp002

Staff
RM Moderator
Joined
Dec 10, 2011
Re: Dante's Lovely Ladies (03/9/14 - Elisabeth-King of Fighters, Miu Ousawa)

Dante said:
UPDATE: Elisabeth - King of Fighters, Miu Ousawa - Aesthetica of a Rouge Hero - Combat Outfit, Gym Outfit & Dynamic Hair.

Votes noted 8)

UPDATE 2: Animated Cop Car

Nicely done, sir! Now I can arrest everyone of my mod-mashes!

Good work on Miu and Elizabeth too!
 

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.