• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Main repository of MikuMikuStudio


Commit MetaInfo

Revision29a3aaec71318d3db92437cd0b26220abbdf280e (tree)
Zeit2013-05-09 16:41:55
Autorremy.bouquet@gmail.com <remy.bouquet@gmai...>
Commiterremy.bouquet@gmail.com

Log Message

ChaseCamera input binding name constants are now public

git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@10594 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

Ändern Zusammenfassung

Diff

--- a/engine/src/core/com/jme3/input/ChaseCamera.java
+++ b/engine/src/core/com/jme3/input/ChaseCamera.java
@@ -99,13 +99,13 @@ public class ChaseCamera implements ActionListener, AnalogListener, Control {
9999 protected Vector3f temp = new Vector3f(0, 0, 0);
100100 protected boolean invertYaxis = false;
101101 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";
109109 protected boolean zoomin;
110110 protected boolean hideCursorOnRotate = true;
111111