Bladeren bron

attribute test.

mitm 5 jaren geleden
bovenliggende
commit
514e3f3028
1 gewijzigde bestanden met toevoegingen van 1 en 0 verwijderingen
  1. 1 0
      src/docs/asciidoc/jme3/advanced/application_states.adoc

+ 1 - 0
src/docs/asciidoc/jme3/advanced/application_states.adoc

@@ -189,6 +189,7 @@ public class MyAppState extends AbstractAppState {
 
 == BaseAppState
 
+
 A new link:{link-javadoc}/com/jme3/app/state/BaseAppState.html[BaseAppState] class was introduced as part of the link:https://hub.jmonkeyengine.org/t/jmonkeyengine-3-1-alpha-4-released/35478[updates] being made to the AppState interface. AbstractAppState is the most minimal of the minimal implementations of the AppState interface. You essentially still need to do everything yourself, including getting the funky enable/disable/initialized/terminate logic right. Now you just extend BaseAppState and you get onEnable() and onDisable() already worked out for you.
 
 Definition: