One With The Shadows
Vivacious Visitor
- Joined
- Jul 7, 2013
I am trying to get the face layer over the jaw layer. sby gave me this coding:
if(param3)
{
param2.addChildAt(param1,param2.getChildIndex(param3) + 1);
}
g.changeLayer(face, face.parent, jaw)
Would the param be from g.changeLayer(face, face.parent, jaw) and I just have to write the names in?
Solution: actual code:
provided by sby. (thanks)
if(param3)
{
param2.addChildAt(param1,param2.getChildIndex(param3) + 1);
}
g.changeLayer(face, face.parent, jaw)
Would the param be from g.changeLayer(face, face.parent, jaw) and I just have to write the names in?
Solution: actual code:
Code:
main.her.head.swapChildren(main.her.head.jaw, main.her.head.face);