Main repository of MikuMikuStudio
修訂 | 29a3aaec71318d3db92437cd0b26220abbdf280e (tree) |
---|---|
時間 | 2013-05-09 16:41:55 |
作者 | remy.bouquet@gmail.com <remy.bouquet@gmai...> |
Commiter | remy.bouquet@gmail.com |
ChaseCamera input binding name constants are now public
git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@10594 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
@@ -99,13 +99,13 @@ public class ChaseCamera implements ActionListener, AnalogListener, Control { | ||
99 | 99 | protected Vector3f temp = new Vector3f(0, 0, 0); |
100 | 100 | protected boolean invertYaxis = false; |
101 | 101 | protected boolean invertXaxis = false; |
102 | - protected final static String ChaseCamDown = "ChaseCamDown"; | |
103 | - protected final static String ChaseCamUp = "ChaseCamUp"; | |
104 | - protected final static String ChaseCamZoomIn = "ChaseCamZoomIn"; | |
105 | - protected final static String ChaseCamZoomOut = "ChaseCamZoomOut"; | |
106 | - protected final static String ChaseCamMoveLeft = "ChaseCamMoveLeft"; | |
107 | - protected final static String ChaseCamMoveRight = "ChaseCamMoveRight"; | |
108 | - protected final static String ChaseCamToggleRotate = "ChaseCamToggleRotate"; | |
102 | + public final static String ChaseCamDown = "ChaseCamDown"; | |
103 | + public final static String ChaseCamUp = "ChaseCamUp"; | |
104 | + public final static String ChaseCamZoomIn = "ChaseCamZoomIn"; | |
105 | + public final static String ChaseCamZoomOut = "ChaseCamZoomOut"; | |
106 | + public final static String ChaseCamMoveLeft = "ChaseCamMoveLeft"; | |
107 | + public final static String ChaseCamMoveRight = "ChaseCamMoveRight"; | |
108 | + public final static String ChaseCamToggleRotate = "ChaseCamToggleRotate"; | |
109 | 109 | protected boolean zoomin; |
110 | 110 | protected boolean hideCursorOnRotate = true; |
111 | 111 |