ChaseCamera input binding name constants are now public

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10594 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
rem..om 2013-05-09 07:41:55 +00:00
parent b105f2c228
commit e2d1a08838

View File

@ -99,13 +99,13 @@ public class ChaseCamera implements ActionListener, AnalogListener, Control {
protected Vector3f temp = new Vector3f(0, 0, 0); protected Vector3f temp = new Vector3f(0, 0, 0);
protected boolean invertYaxis = false; protected boolean invertYaxis = false;
protected boolean invertXaxis = false; protected boolean invertXaxis = false;
protected final static String ChaseCamDown = "ChaseCamDown"; public final static String ChaseCamDown = "ChaseCamDown";
protected final static String ChaseCamUp = "ChaseCamUp"; public final static String ChaseCamUp = "ChaseCamUp";
protected final static String ChaseCamZoomIn = "ChaseCamZoomIn"; public final static String ChaseCamZoomIn = "ChaseCamZoomIn";
protected final static String ChaseCamZoomOut = "ChaseCamZoomOut"; public final static String ChaseCamZoomOut = "ChaseCamZoomOut";
protected final static String ChaseCamMoveLeft = "ChaseCamMoveLeft"; public final static String ChaseCamMoveLeft = "ChaseCamMoveLeft";
protected final static String ChaseCamMoveRight = "ChaseCamMoveRight"; public final static String ChaseCamMoveRight = "ChaseCamMoveRight";
protected final static String ChaseCamToggleRotate = "ChaseCamToggleRotate"; public final static String ChaseCamToggleRotate = "ChaseCamToggleRotate";
protected boolean zoomin; protected boolean zoomin;
protected boolean hideCursorOnRotate = true; protected boolean hideCursorOnRotate = true;