Modding Help to make a new nose following Faceless's Mod Template. (1 Viewer)

Maiz

Potential Patron
Joined
Jun 23, 2016
I was trying to make a new nose following Faceless's Mod Template. The nose I have made does not replace the old nose rather, it just sits on top of it.

How do I remove the vanilla nose?

I made a swf mod and and tried it in the loader and you can see the problem I have in the picture below as well as the mod.
 

Attachments

  • newnose.PNG
    newnose.PNG
    253.7 KB · Views: 156
Mod (2).swf
4.6 KB · Views: 148

stuntcock

Content Creator
Joined
Jun 5, 2012
The nose I have made does not replace the old nose rather, it just sits on top of it.

How do I remove the vanilla nose?
Your ActionScript code contains the following section:
Code:
   //---------------------------nose
   hernose = new newnose();
   loader.loadManual(hernose, her.head.face.nose);

Replace it with this:
Code:
   //---------------------------nose
   hernose = new newnose();
   for (i = 0; i < her.head.face.nose.numChildren; i++) {
     her.head.face.nose.getChildAt(i).visible = false;
   }
   loader.loadManual(hernose, her.head.face.nose);
 

Maiz

Potential Patron
Joined
Jun 23, 2016
Your ActionScript code contains the following section:
Code:
   //---------------------------nose
   hernose = new newnose();
   loader.loadManual(hernose, her.head.face.nose);

Replace it with this:
Code:
   //---------------------------nose
   hernose = new newnose();
   for (i = 0; i < her.head.face.nose.numChildren; i++) {
     her.head.face.nose.getChildAt(i).visible = false;
   }
   loader.loadManual(hernose, her.head.face.nose);



It works now Thank you very much!
 

Attachments

  • newnosefixed.PNG
    newnosefixed.PNG
    99.5 KB · Views: 177

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.