We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29f5872 commit 73cf6c3Copy full SHA for 73cf6c3
jme3-core/src/main/java/com/jme3/app/state/AppStateManager.java
@@ -365,6 +365,9 @@ public void render(RenderManager rm){
365
AppState[] array = getStates();
366
for (AppState state : array){
367
if (state.isEnabled()) {
368
+ if (app.getAppProfiler() != null) {
369
+ app.getAppProfiler().appSubStep(state.getClass().getSimpleName());
370
+ }
371
state.render(rm);
372
}
373
@@ -377,6 +380,9 @@ public void postRender(){
377
380
378
381
379
382
383
384
385
386
state.postRender();
387
388
0 commit comments