Package com.ardor3d.extension.interact.widget

Examples of com.ardor3d.extension.interact.widget.RotateWidget


        // 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",
                Texture.MinificationFilter.Trilinear, true));
        manager.addWidget(rotateWidget);

        scaleWidget = new SimpleScaleWidget().withArrow(Vector3.UNIT_Y);
View Full Code Here

TOP

Related Classes of com.ardor3d.extension.interact.widget.RotateWidget

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.