Package com.ardor3d.extension.animation.skeletal

Examples of com.ardor3d.extension.animation.skeletal.AttachmentPoint


        return node;
    }

    protected void createJointAttachment(final JointNode jointChildNode, final Node node, final Node subNode) {
        final AttachmentPoint attach = new AttachmentPoint("attach-" + node.getName(), (short) 0, subNode,
                new Transform(subNode.getTransform()));
        _dataCache.addAttachmentPoint(jointChildNode.getJoint(), attach);
        // we will attach to scene instead.
        subNode.removeFromParent();
    }
View Full Code Here

TOP

Related Classes of com.ardor3d.extension.animation.skeletal.AttachmentPoint

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.