Arsenal said:On the subject, is it possible for you to make the bunny suit RGB shiftable?
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.
Arsenal said:On the subject, is it possible for you to make the bunny suit RGB shiftable?
BuckWild said: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 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.
Note that the ColorMatrix stuff doesn't actually work. Everything else is good, though.Faceless said: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: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.
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.
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
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