Examples of onFrameChange()


Examples of com.jme.renderer.Camera.onFrameChange()

        final float movementAmount = -e.getWheelRotation() * getSensitivity() * getAltitudeFactor();

        // TODO: Implement inertia, acceleration, locked movement, and keyboard input

        camera.getLocation().scaleAdd( movementAmount, camera.getDirection(), camera.getLocation() );
        camera.onFrameChange();
    }

}
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.