Package com.ardor3d.scenegraph.controller.interpolation

Examples of com.ardor3d.scenegraph.controller.interpolation.DefaultColorInterpolationController


    protected DefaultColorInterpolationController createController() {
        // Create our control point colors
        final ReadOnlyColorRGBA[] colors = { ColorRGBA.WHITE, ColorRGBA.RED, ColorRGBA.GREEN, ColorRGBA.BLUE };

        // Create our controller
        final DefaultColorInterpolationController controller = new DefaultColorInterpolationController();
        controller.setControls(colors);
        controller.setActive(true);
        controller.setSpeed(0.5);

        return controller;
    }
View Full Code Here

TOP

Related Classes of com.ardor3d.scenegraph.controller.interpolation.DefaultColorInterpolationController

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.