com.jme3.app.StatsAppState Java Examples

The following examples show how to use com.jme3.app.StatsAppState. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Main.java    From Lemur with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
public Main() {
    super( new StatsAppState(), 
           new HudState(), 
           new CameraMovementState(),
           new SelectionState(),
           AppMode.getInstance(),
           new ScreenshotAppState("ScriptMonkey", System.currentTimeMillis()) );
}
 
Example #2
Source File: TestJaime.java    From jmonkeyengine with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
@Override
public void simpleInitApp() {
    stateManager.detach(stateManager.getState(FlyCamAppState.class));
    stateManager.detach(stateManager.getState(ResetStatsState.class));
    stateManager.detach(stateManager.getState(DebugKeysAppState.class));
    stateManager.detach(stateManager.getState(StatsAppState.class));
    final Node jaime = LoadModel();
    
    setupLights();        
    setupCamera();
    setupFloor();
    setupCinematic(jaime);
    setupInput();
}
 
Example #3
Source File: CameraDemo.java    From Lemur with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
public CameraDemo() {
    super(new StatsAppState(), new CameraMovementState());
}
 
Example #4
Source File: Main.java    From Lemur with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
public Main() {
    super(new StatsAppState(), new CameraMovementState(), new CameraToggleState());
}
 
Example #5
Source File: DecoratorDemo.java    From Lemur with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
public DecoratorDemo() {
    super(new StatsAppState(), new CameraMovementState(), new CameraToggleState());
}
 
Example #6
Source File: PickDemo.java    From Lemur with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
public PickDemo() {
    super(new StatsAppState(), new CameraMovementState(), new CameraToggleState());
}
 
Example #7
Source File: DeformationDemo.java    From Lemur with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
public DeformationDemo() {
    super(new StatsAppState(), new CameraMovementState(), new CameraToggleState());
}
 
Example #8
Source File: ProtoDemo.java    From Lemur with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
public ProtoDemo() {
    super(new StatsAppState(), new DebugKeysAppState(), new BasicProfilerState(false),
          new OptionPanelState("glass"),
          new ScreenshotAppState("", System.currentTimeMillis())); 
}
 
Example #9
Source File: TestSceneStress.java    From jmonkeyengine with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
public TestSceneStress() {
    super(new StatsAppState(), new DebugKeysAppState(), new BasicProfilerState(false),
          new FlyCamAppState(),
          new ScreenshotAppState("", System.currentTimeMillis())); 
}
 
Example #10
Source File: TestBitmapFontLayout.java    From jmonkeyengine with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
public TestBitmapFontLayout() {
    super(new StatsAppState(), 
          new DebugKeysAppState(),
          new ScreenshotAppState("", System.currentTimeMillis()));
}
 
Example #11
Source File: HelloJME3.java    From chuidiang-ejemplos with GNU Lesser General Public License v3.0 4 votes vote down vote up
public HelloJME3(){
    super(new StatsAppState(), new FlyCamAppState(), new AudioListenerState(), new DebugKeysAppState());
}