Package com.ardor3d.intersection

Examples of com.ardor3d.intersection.Pickable


    @Override
    protected void processPicks(final PrimitivePickResults pickResults) {
        final PickData pick = pickResults.findFirstIntersectingPickData();
        if (pick != null) {
            final Pickable target = pick.getTarget();
            if (target instanceof Spatial) {
                manager.setSpatialTarget(((Spatial) target).getParent());
                return;
            }
        }
View Full Code Here

TOP

Related Classes of com.ardor3d.intersection.Pickable

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.