Browse Source

Added an accessor for the stats view object.
Necessary if you want to move these things around
to different places on the screen.


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

PSp..om 13 years ago
parent
commit
f07446e0d4
1 changed files with 4 additions and 0 deletions
  1. 4 0
      engine/src/core/com/jme3/app/StatsAppState.java

+ 4 - 0
engine/src/core/com/jme3/app/StatsAppState.java

@@ -82,6 +82,10 @@ public class StatsAppState extends AbstractAppState {
     public BitmapText getFpsText() {
     public BitmapText getFpsText() {
         return fpsText;
         return fpsText;
     }
     }
+    
+    public StatsView getStatsView() {
+        return statsView;
+    }
 
 
     public float getSecondCounter() {
     public float getSecondCounter() {
         return secondCounter;
         return secondCounter;