Package com.ardor3d.extension.interact

Examples of com.ardor3d.extension.interact.InteractManager


        manager.getLogicalLayer().checkTriggers(timer.getTimePerFrame());
    }

    private void addControls() {
        // create our manager
        manager = new InteractManager();
        manager.setupInput(_canvas, _physicalLayer, _logicalLayer);

        // add some widgets.
        rotateWidget = new RotateWidget().withXAxis().withYAxis().withZAxis();
        rotateWidget.setTexture((Texture2D) TextureManager.load("images/tick.png",
View Full Code Here


        _root.setRenderState(fs);
    }

    private void addControls() {
        // create our manager
        manager = new InteractManager();
        manager.setupInput(_canvas, _physicalLayer, _logicalLayer);

        // final add our widget
        final CompoundInteractWidget widget = new CompoundInteractWidget()
                .withMoveXAxis(new ColorRGBA(1, 0, 0, .65f), 1.2, .15, .5, .2)
View Full Code Here

TOP

Related Classes of com.ardor3d.extension.interact.InteractManager

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.