Sharklasers
Content Creator
- Joined
- Feb 8, 2016
I'm messing with some of the .fla files Dante released when he left. I want to make more .swf imports for the female/futa "him" body.
Here's the code as Dante left it:
(I commented out the leftLeg.calf.visible=false lines.)
There's a piece of the template for forearm/hand mods. What code would I need to add to load in forearm mods for the left and right arms?
Here's the code as Dante left it:
Code:
function initl(l)
{
l.g.inGameMenu.loadData("hisBody:female;hisFootwear:none,82,0,6,1;hisBreasts:130;");
l.loadCustomFull(new historso,".|Him.torsoLayer.torso","x:0;y:0;r:0;a:1");
l.loadCustomFull(new hisbreastr,".|Him.torsoLayer.rightBreastContainer.rightBreast","x:0;y:0;r:0;a:1");
l.loadCustomFull(new hisbreastl,".|Him.torsoLayer.leftBreastContainer.leftBreast","x:0;y:0;r:0;a:1");
l.loadCustomFull(new hisfootl(),".|Him.leftLegCostume.calf.foot","x:0;y:0;r:0;a:1");
l.loadCustomFull(new hisfootr(),".|Him.rightLegCostume.calf.foot","x:0;y:0;r:0;a:1");
l.loadCustomFull(new hiscalfl(),".|Him.leftLegCostume.calf","x:0;y:0;r:0;a:1");
l.loadCustomFull(new hiscalfr(),".|Him.rightLegCostume.calf","x:0;y:0;r:0;a:1");
l.loadCustomFull(new histhighl(),".|Him.leftLegCostume","x:0;y:0;r:0;a:1");
l.loadCustomFull(new histhighr,".|Him.rightLegCostume","x:0;y:0;r:0;a:1");
l.loadCustomFull(new historso,".|Him.torsoLayer.torso","x:0;y:0;r:0;a:1");
l.loadCustomFull(new pantstop,".|Him.midLayer.hips","x:0;y:0;r:0;a:1");
var hupperarm = new hisupperarm();
hupperarm.rotation = -90;
l.him.armContainer.arm.upperArm.addChild(hupperarm);
l.registerToRemove(hupperarm);
var hforearm = new hisforearm();
var hupperarml = new hisupperarml();
l.him.leftArmContainer.arm.addChild(hupperarml);
l.registerToRemove(hupperarml);
//l.him.leftLeg.calf.visible=false;
//l.him.rightLeg.calf.visible=false;
l.unloadMod();
}
(I commented out the leftLeg.calf.visible=false lines.)
There's a piece of the template for forearm/hand mods. What code would I need to add to load in forearm mods for the left and right arms?